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 b59a4f7 commit 626145cCopy full SHA for 626145c
ci/helm-chart/templates/deployment.yaml
@@ -7,6 +7,9 @@ metadata:
7
helm.sh/chart: {{ include "code-server.chart" . }}
8
app.kubernetes.io/instance: {{ .Release.Name }}
9
app.kubernetes.io/managed-by: {{ .Release.Service }}
10
+ {{- if .Values.annotations }}
11
+ annotations: {{- toYaml .Values.annotations | nindent 4 }}
12
+ {{- end }}
13
spec:
14
replicas: {{ .Values.replicaCount | default 1 }}
15
strategy:
ci/helm-chart/values.yaml
@@ -31,6 +31,9 @@ serviceAccount:
31
# If not set and create is true, a name is generated using the fullname template
32
name: ""
33
34
+# Specifies annotations for deployment
35
+annotations: {}
36
+
37
podAnnotations: {}
38
39
podSecurityContext: {}
0 commit comments