Browse Source

Fixed some minor syntax issues

Django Cass 3 years ago
parent
commit
bd536016f3

+ 1 - 1
deploy/charts/external-secrets/templates/cert-controller-deployment.yaml

@@ -82,7 +82,7 @@ spec:
           {{- end }}
       {{- if .Values.certController.extraVolumes }}
       volumes:
-      {{ toYaml .Values.certController.extraVolumes | nindent 8 }}
+      {{- toYaml .Values.certController.extraVolumes | nindent 8 }}
       {{- end }}
       {{- with .Values.certController.nodeSelector }}
       nodeSelector:

+ 3 - 3
deploy/charts/external-secrets/templates/deployment.yaml

@@ -89,13 +89,13 @@ spec:
           resources:
             {{- toYaml . | nindent 12 }}
           {{- end }}
-          {{- if .Values.webhook.extraVolumeMounts }}
+          {{- if .Values.extraVolumeMounts }}
           volumeMounts:
-          {{- toYaml .Values.webhook.extraVolumeMounts | nindent 12 }}
+          {{- toYaml .Values.extraVolumeMounts | nindent 12 }}
           {{- end }}
       {{- if .Values.extraVolumes }}
       volumes:
-      {{ toYaml .Values.extraVolumes | nindent 8 }}
+      {{- toYaml .Values.extraVolumes | nindent 8 }}
       {{- end }}
       {{- with .Values.nodeSelector }}
       nodeSelector:

+ 1 - 1
deploy/charts/external-secrets/templates/webhook-deployment.yaml

@@ -91,7 +91,7 @@ spec:
         secret:
           secretName: {{ include "external-secrets.fullname" . }}-webhook
       {{- if .Values.webhook.extraVolumes }}
-      {{ toYaml .Values.webhook.extraVolumes | nindent 8 }}
+      {{- toYaml .Values.webhook.extraVolumes | nindent 8 }}
       {{- end }}
       {{- with .Values.webhook.nodeSelector }}
       nodeSelector: