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 843bbc3 commit a7f4096Copy full SHA for a7f4096
2 files changed
charts/pushgateway-cleaner/templates/cron.yaml
@@ -24,6 +24,14 @@ spec:
24
type: cron
25
spec:
26
restartPolicy: OnFailure
27
+ {{- with .Values.nodeSelector }}
28
+ nodeSelector:
29
+ {{- toYaml . | nindent 12 }}
30
+ {{- end }}
31
+ {{- with .Values.tolerations }}
32
+ tolerations:
33
34
35
containers:
36
- name: cleaner
37
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
charts/pushgateway-cleaner/values.yaml
@@ -4,3 +4,5 @@ image:
4
pullPolicy: IfNotPresent
5
cronSchedule: "*/5 * * * *"
6
metricUrl: "http://pushgateway-prometheus-pushgateway:9091/metrics"
7
+nodeSelector: {}
8
+tolerations: []
0 commit comments