We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba1ae76 commit 5c510c4Copy full SHA for 5c510c4
charts/ziti-webhook/templates/deployment.yaml
@@ -26,7 +26,7 @@ spec:
26
spec:
27
containers:
28
- name: ziti-admission-webhook
29
- image: "{{ .Values.deployment.image.repo }}:{{ .Values.deployment.image.tag }}"
+ image: "{{ .Values.deployment.image.repo }}:{{ .Values.deployment.image.tag | default .Chart.AppVersion }}"
30
imagePullPolicy: {{ .Values.deployment.image.pullPolicy }}
31
ports:
32
- containerPort: {{ .Values.server.port }}
charts/ziti-webhook/values.yaml
@@ -40,7 +40,7 @@ deployment:
40
name: "ziti-admission-wh-deployment"
41
image:
42
repo: "docker.io/netfoundry/ziti-k8s-agent"
43
- tag: "latest"
+ tag: "" # Empty defaults to chart's appVersion
44
pullPolicy: "IfNotPresent"
45
replicas: 1
46
resources:
0 commit comments