We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7063267 commit c37f22bCopy full SHA for c37f22b
helm/templates/coder.yaml
@@ -27,6 +27,9 @@ spec:
27
metadata:
28
labels:
29
{{- include "coder.labels" . | nindent 8 }}
30
+ {{- with .Values.coder.podLabels }}
31
+ {{- toYaml . | nindent 8 }}
32
+ {{- end }}
33
annotations:
34
{{- toYaml .Values.coder.podAnnotations | nindent 8 }}
35
spec:
helm/values.yaml
@@ -42,6 +42,10 @@ coder:
42
# https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/
43
podAnnotations: {}
44
45
+ # coder.podLabels -- The Coder pod labels. See:
46
+ # https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/
47
+ podLabels: {}
48
+
49
# coder.serviceAccount -- Configuration for the automatically created service
50
# account. Creation of the service account cannot be disabled.
51
serviceAccount:
0 commit comments