I created a helm chart which is deriving value of app.kubernetes.io/instance
from a template value like this:
labels:
app.kubernetes.io/name: {{ include "mychart.name" . }}
helm.sh/chart: {{ include "mychart.chart" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
I don't know in which file and how to override its value. I don't want to override it by command line as described at Helm how to define .Release.Name value