Skip to content

Commit

Permalink
fix: Correct nindent for extraEnvs
Browse files Browse the repository at this point in the history
  • Loading branch information
mecampbellsoup committed Aug 20, 2024
1 parent a4c64ab commit 9ec9994
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kubernetes-ingress/templates/controller-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -213,7 +213,7 @@ spec:
fieldRef:
fieldPath: status.podIP
{{- if .Values.controller.extraEnvs -}}
{{- toYaml .Values.controller.extraEnvs | nindent 10 }}
{{- toYaml .Values.controller.extraEnvs | nindent 12 }}
{{- end }}
{{- with .Values.controller.extraEnvFrom }}
envFrom:
Expand Down
2 changes: 1 addition & 1 deletion kubernetes-ingress/templates/controller-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@ spec:
fieldRef:
fieldPath: status.podIP
{{- if .Values.controller.extraEnvs -}}
{{- toYaml .Values.controller.extraEnvs | nindent 10 }}
{{- toYaml .Values.controller.extraEnvs | nindent 12 }}
{{- end }}
{{- with .Values.controller.extraEnvFrom }}
envFrom:
Expand Down

0 comments on commit 9ec9994

Please sign in to comment.