We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 943c653 + d2b2717 commit 38fd18bCopy full SHA for 38fd18b
1 file changed
kubernetes/helm/gateway-helm-chart/templates/gateway/controller/deployment.yaml
@@ -170,8 +170,8 @@ spec:
170
mountPath: {{ $controller.encryptionKeys.mountPath }}
171
readOnly: true
172
{{- end }}
173
- {{- range $deployment.extraVolumeMounts }}
174
- - {{- toYaml . | nindent 12 }}
+ {{- with $deployment.extraVolumeMounts }}
+ {{- toYaml . | nindent 12 }}
175
176
volumes:
177
- name: controller-data
@@ -217,7 +217,7 @@ spec:
217
secret:
218
secretName: {{ $controller.encryptionKeys.secretName }}
219
220
- {{- range $deployment.extraVolumes }}
221
- - {{- toYaml . | nindent 10 }}
+ {{- with $deployment.extraVolumes }}
+ {{- toYaml . | nindent 8 }}
222
223
0 commit comments