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.
2 parents f7f86ed + d841a2d commit 483c9c1Copy full SHA for 483c9c1
charts/descheduler/templates/deployment.yaml
@@ -6,6 +6,9 @@ metadata:
6
namespace: {{ include "descheduler.namespace" . }}
7
labels:
8
{{- include "descheduler.labels" . | nindent 4 }}
9
+ {{- if .Values.annotations }}
10
+ annotations: {{- toYaml .Values.deploymentAnnotations | nindent 4 }}
11
+ {{- end }}
12
spec:
13
{{- if gt (.Values.replicas | int) 1 }}
14
{{- if not .Values.leaderElection.enabled }}
charts/descheduler/values.yaml
@@ -204,6 +204,9 @@ serviceAccount:
204
# Default is not set - but only implied by the ServiceAccount
205
# automountServiceAccountToken: true
206
207
+# Annotations that'll be applied to deployment
208
+deploymentAnnotations: {}
209
+
210
cronJobAnnotations: {}
211
212
cronJobLabels: {}
0 commit comments