We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 254c99d commit 238300dCopy full SHA for 238300d
plugins/contrib/charts/daemon/templates/deployment.yaml
@@ -6,7 +6,11 @@ metadata:
6
application: {{ .Values.global.repositoryName }}
7
name: {{ (or .Values.component .Chart.Name) | lower }}
8
namespace: {{ or .Values.namespace .Values.global.namespace }}
9
- annotations: {}
+ annotations:
10
+ {{- if .Values.annotations }}
11
+ {{- range $key, $val := .Values.annotations }}
12
+ "{{ $key }}": "{{ $val }}"
13
+ {{- end }}
14
spec:
15
replicas: {{ or .Values.replicas .Values.global.replicas 1 }}
16
selector:
plugins/contrib/charts/daemon/values.yaml
@@ -32,3 +32,4 @@ args: []
32
antiAffinity:
33
enabled:
34
strategyType: RollingUpdate
35
+annotations:
0 commit comments