azdevops
azdevops

Reputation: 21

/templates/_helpers.tpl:14:27: executing "fullname" at <.Chart.Name>: can't evaluate field Chart in type string

I'm getting the error in the helm when I run a Helm chart. helpers.tpl contains:

{{- define "fullname" -}}

{{- $name := default .Chart.Name .Values.nameOverride -}}

{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" -}}
{{- end -}}

Upvotes: 0

Views: 1408

Answers (1)

azdevops
azdevops

Reputation: 21

There was a format issue in my ingress.yml . Thanks

Upvotes: 1

Related Questions