Skip to content

Commit 238300d

Browse files
committed
fix: annotations values for daemon
1 parent 254c99d commit 238300d

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

plugins/contrib/charts/daemon/templates/deployment.yaml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@ metadata:
66
application: {{ .Values.global.repositoryName }}
77
name: {{ (or .Values.component .Chart.Name) | lower }}
88
namespace: {{ or .Values.namespace .Values.global.namespace }}
9-
annotations: {}
9+
annotations:
10+
{{- if .Values.annotations }}
11+
{{- range $key, $val := .Values.annotations }}
12+
"{{ $key }}": "{{ $val }}"
13+
{{- end }}
1014
spec:
1115
replicas: {{ or .Values.replicas .Values.global.replicas 1 }}
1216
selector:

plugins/contrib/charts/daemon/values.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,3 +32,4 @@ args: []
3232
antiAffinity:
3333
enabled:
3434
strategyType: RollingUpdate
35+
annotations:

0 commit comments

Comments
 (0)