Skip to content

Commit 1b4c83b

Browse files
committed
feat: add podAnnotations to operator pod
1 parent 2e63ede commit 1b4c83b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

templates/job-operator.yaml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,10 @@ metadata:
1212
spec:
1313
template:
1414
metadata:
15+
{{- with .Values.podAnnotations }}
16+
annotations:
17+
{{- toYaml . | nindent 8 }}
18+
{{- end }}
1519
labels:
1620
app.kubernetes.io/component: operator
1721
spec:

values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ serviceAccount:
7373
## -- If not set and create is true, a name is generated using the fullname template.
7474
name: ""
7575

76-
## -- Annotations for the Pod.
76+
## -- Annotations for both the server and operator Pods.
7777
podAnnotations: {}
7878
## -- Labels for the Pod.
7979
podLabels: {}

0 commit comments

Comments
 (0)