We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9200213 commit a956fcbCopy full SHA for a956fcb
2 files changed
deploy/k8s/helm-charts/promxy/templates/deployment.yaml
@@ -99,7 +99,8 @@ spec:
99
args:
100
- "--volume-dir=/etc/promxy"
101
- "--webhook-url=http://localhost:8082/-/reload"
102
- image: jimmidyson/configmap-reload:v0.5.0
+ image: "{{ .Values.configmapReloader.image.repository }}:{{ .Values.configmapReloader.image.tag }}"
103
+ imagePullPolicy: {{ .Values.configmapReloader.image.pullPolicy }}
104
volumeMounts:
105
- mountPath: "/etc/promxy/"
106
name: config
deploy/k8s/helm-charts/promxy/values.yaml
@@ -15,6 +15,12 @@ image:
15
tag: "master" # rewrites Chart.AppVersion
16
pullPolicy: IfNotPresent
17
18
+configmapReloader:
19
+ image:
20
+ repository: jimmidyson/configmap-reload
21
+ tag: "v0.5.0"
22
+ pullPolicy: IfNotPresent
23
+
24
podDisruptionBudget:
25
enabled: false
26
# minAvailable: 1
0 commit comments