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 193c3f1 commit b6db616Copy full SHA for b6db616
2 files changed
charts/keepup/templates/deployment.yaml
@@ -22,6 +22,14 @@ spec:
22
{{- toYaml .Values.annotations | nindent 8 }}
23
{{- end }}
24
spec:
25
+ {{- if .Values.nodeSelector }}
26
+ nodeSelector:
27
+ {{- toYaml .Values.nodeSelector | nindent 8 }}
28
+ {{- end }}
29
+ {{- if .Values.tolerations }}
30
+ tolerations:
31
+ {{- toYaml .Values.tolerations | nindent 8 }}
32
33
containers:
34
{{ if .Values.redis.enabled }}
35
- name: keepup-redis-container
charts/keepup/values.yaml
@@ -30,6 +30,14 @@ annotations: {}
# "prometheus.io/port": '80'
# "prometheus.io/path": '/metrics'
+nodeSelector: {}
+# kubernetes.io/os: linux
+
36
+tolerations: []
37
+# - key: "example-key"
38
+# operator: "Exists"
39
+# effect: "NoSchedule"
40
41
apiToken: ''
42
appEnv: prod
43
redisAddr: 127.0.0.1
0 commit comments