goldilocks icon indicating copy to clipboard operation
goldilocks copied to clipboard

helm chart: wrong values for dashboard template

Open aaronstutzer opened this issue 1 year ago • 0 comments

in dashboard-deployment.yaml the wrong values are used

103    {{- with .Values.controller.topologySpreadConstraints }}
104      topologySpreadConstraints:
105        {{- toYaml . | nindent 8 }}
106    {{- end }}

it should be

103    {{- with .Values.dashboard.topologySpreadConstraints }}
104      topologySpreadConstraints:
105        {{- toYaml . | nindent 8 }}
106    {{- end }}

aaronstutzer avatar Feb 28 '24 10:02 aaronstutzer