Skip to content

Commit 548e387

Browse files
DaDummyFxKu
andauthored
Fix deployment extraEnvs indentation in operator chart (#2814)
* Fix operator extraEnvs indentation Fix bad operator extraEnvs indentation by matching the statement to how other lists are expanded in the deployment template * Replace nindent by indent to fully mirror the other similar lines in the file --------- Co-authored-by: Felix Kunde <[email protected]>
1 parent d97c271 commit 548e387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

charts/postgres-operator/templates/deployment.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ spec:
5454
value: {{ template "postgres-operator.controllerID" . }}
5555
{{- end }}
5656
{{- if .Values.extraEnvs }}
57-
{{- .Values.extraEnvs | toYaml | nindent 8 }}
57+
{{ toYaml .Values.extraEnvs | indent 8 }}
5858
{{- end }}
5959
resources:
6060
{{ toYaml .Values.resources | indent 10 }}

0 commit comments

Comments
 (0)