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 9714fda commit 2d27081Copy full SHA for 2d27081
helm/sloop/templates/statefulset.yaml
@@ -18,6 +18,9 @@ spec:
18
labels:
19
app.kubernetes.io/name: {{ .Values.name }}
20
app.kubernetes.io/instance: "{{ .Release.Name }}"
21
+{{ toYaml .Values.podLabels | indent 8 }}
22
+ annotations:
23
+{{ toYaml .Values.podAnnotations | indent 8 }}
24
spec:
25
tolerations:
26
{{ toYaml .Values.tolerations | indent 8 }}
helm/sloop/values.yaml
@@ -1,6 +1,9 @@
1
serviceAccountName: sloop
2
## If defined, specifies the tolerations to attach to the pods
3
tolerations: []
4
+## If defined, specifies the labels and/or annotations to attach to the pods
5
+podLabels: {}
6
+podAnnotations: {}
7
name: sloop
8
replicas: 1
9
image:
0 commit comments