We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af096c4 commit 82748beCopy full SHA for 82748be
charts/eks-pod-identity-webhook/templates/deployment.yaml
@@ -25,7 +25,7 @@ spec:
25
containers:
26
- name: webhook
27
image: {{ .Values.image.repository }}:{{ .Values.image.tag }}
28
- imagePullPolicy: {{ .Values.image.pullPolicy }}
+ imagePullPolicy: {{ if eq .Values.image.tag "latest" }}Always{{ else }}IfNotPresent{{ end }}
29
args:
30
- "--tls-cert-path=/etc/webhook/certs/tls.crt"
31
- "--tls-key-path=/etc/webhook/certs/tls.key"
charts/eks-pod-identity-webhook/values.yaml
@@ -3,7 +3,6 @@ replicaCount: 3
3
image:
4
repository: ghcr.io/mondu-ai/eks-pod-identity-webhook
5
tag: latest
6
- pullPolicy: IfNotPresent
7
8
serviceAccount:
9
create: true
0 commit comments