File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed
packaging/helm-charts/helm3/strimzi-kafka-operator Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -106,6 +106,7 @@ the documentation for more details.
106
106
| ` defaultImageRegistry ` | Default image registry for all the images | ` quay.io ` |
107
107
| ` defaultImageRepository ` | Default image registry for all the images | ` strimzi ` |
108
108
| ` defaultImageTag ` | Default image tag for all the images except Kafka Bridge | ` latest ` |
109
+ | ` deploymentAnnotations ` | Annotations for the operator deployment | ` {} ` |
109
110
| ` image.registry ` | Override default Cluster Operator image registry | ` nil ` |
110
111
| ` image.repository ` | Override default Cluster Operator image repository | ` nil ` |
111
112
| ` image.name ` | Cluster Operator image name | ` operator ` |
Original file line number Diff line number Diff line change @@ -9,6 +9,10 @@ metadata:
9
9
component : deployment
10
10
release : {{ .Release.Name }}
11
11
heritage : {{ .Release.Service }}
12
+ {{- with .Values.deploymentAnnotations }}
13
+ annotations :
14
+ {{- toYaml . | nindent 4 }}
15
+ {{- end }}
12
16
spec :
13
17
replicas : {{ .Values.replicas }}
14
18
{{- if .Values.revisionHistoryLimit }}
Original file line number Diff line number Diff line change @@ -41,6 +41,7 @@ affinity: {}
41
41
annotations : {}
42
42
labels : {}
43
43
nodeSelector : {}
44
+ deploymentAnnotations : {}
44
45
priorityClassName : " "
45
46
46
47
podSecurityContext : {}
You can’t perform that action at this time.
0 commit comments