File tree Expand file tree Collapse file tree 2 files changed +16
-2
lines changed
helm/k8s-image-availability-exporter Expand file tree Collapse file tree 2 files changed +16
-2
lines changed Original file line number Diff line number Diff line change 21
21
spec :
22
22
containers :
23
23
- name : k8s-image-availability-exporter
24
- args : ["--bind-address=:8080"]
24
+ {{- if .Values.k8sImageAvailabilityExporter.args }}
25
+ args :
26
+ {{- range .Values.k8sImageAvailabilityExporter.args }}
27
+ - {{ . }}
28
+ {{- end }}
29
+ {{- end }}
30
+ {{- if .Values.k8sImageAvailabilityExporter.env }}
31
+ env :
32
+ {{- range .Values.k8sImageAvailabilityExporter.env }}
33
+ - name : {{ .name }}
34
+ value : {{ .value }}
35
+ {{- end }}
36
+ {{- end }}
25
37
ports :
26
38
- containerPort : 8080
27
39
name : http
Original file line number Diff line number Diff line change @@ -5,7 +5,9 @@ k8sImageAvailabilityExporter:
5
5
pullPolicy : IfNotPresent
6
6
replicas : 1
7
7
resources : {}
8
-
8
+ args :
9
+ - --bind-address=:8080
10
+
9
11
serviceMonitor :
10
12
enabled : false
11
13
interval : 15s
You can’t perform that action at this time.
0 commit comments