Skip to content

Commit

Permalink
Fixes for review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
johngmyers committed Oct 4, 2023
1 parent 51e3b34 commit badc6c3
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions charts/external-dns/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ spec:
securityContext:
{{- toYaml . | nindent 12 }}
{{- end }}
image: {{ .Values.webhook.image . }}
image: {{ .Values.webhook.image }}
imagePullPolicy: {{ .Values.image.pullPolicy }}
{{- with .Values.webhook.env }}
env:
Expand All @@ -154,7 +154,7 @@ spec:
{{- toYaml .Values.webhook.livenessProbe | nindent 12 }}
readinessProbe:
{{- toYaml .Values.webhook.readinessProbe | nindent 12 }}
{{- if or .Values.webhook.secretConfiguration.enabled .Values.webhook.extraVolumeMounts }}
{{- if or .Values.webhook.secretConfiguration.mountPath .Values.webhook.extraVolumeMounts }}
volumeMounts:
{{- if .Values.webhook.secretConfiguration.mountPath }}
- name: secrets
Expand All @@ -172,9 +172,9 @@ spec:
{{- toYaml . | nindent 12 }}
{{- end }}
{{- end }}
{{- if or .Values.secretConfiguration.enabled .Values.webhook.secretConfiguration.enabled .Values.extraVolumes }}
{{- if or .Values.secretConfiguration.mountPath .Values.webhook.secretConfiguration.mountPath .Values.extraVolumes }}
volumes:
{{- if .Values.secretConfiguration.enabled }}
{{- if or .Values.secretConfiguration.mountPath .Values.webhook.secretConfiguration.mountPath }}
- name: secrets
secret:
secretName: {{ include "external-dns.fullname" . }}
Expand Down

0 comments on commit badc6c3

Please sign in to comment.