Skip to content

Commit

Permalink
🐛 fix: Fix rendered value for app.kubernetes.io/name
Browse files Browse the repository at this point in the history
  • Loading branch information
monteiro-renato authored Nov 20, 2024
1 parent a2e0553 commit 0122ab1
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ func (f *HelmHelpers) SetTemplateDefaults() error {
const helmHelpersTemplate = `{{` + "`" + `{{- define "chart.name" -}}` + "`" + `}}
{{` + "`" + `{{- if .Chart }}` + "`" + `}}
{{` + "`" + `{{- if .Chart.Name }}` + "`" + `}}
{{` + "`" + `{{ .Chart.Name | trunc 63 | trimSuffix "-" }}` + "`" + `}}
{{` + "`" + `{{- .Chart.Name | trunc 63 | trimSuffix "-" }}` + "`" + `}}
{{` + "`" + `{{- else if .Values.nameOverride }}` + "`" + `}}
{{` + "`" + `{{ .Values.nameOverride | trunc 63 | trimSuffix "-" }}` + "`" + `}}
{{` + "`" + `{{- else }}` + "`" + `}}
Expand Down

0 comments on commit 0122ab1

Please sign in to comment.