File tree 4 files changed +7
-1
lines changed
4 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -29,4 +29,4 @@ name: kafka
29
29
sources :
30
30
- https://github.com/bitnami/bitnami-docker-kafka
31
31
- https://kafka.apache.org/
32
- version : 12.19.2
32
+ version : 12.20.0
Original file line number Diff line number Diff line change @@ -306,6 +306,7 @@ The following tables lists the configurable parameters of the Kafka chart and th
306
306
| ` provisioning.image ` | Kafka provisioning Job image | ` Check values.yaml file ` |
307
307
| ` provisioning.numPartitions ` | Default number of partitions for topics when unspecified. | 1 |
308
308
| ` provisioning.replicationFactor ` | Default replication factor for topics when unspecified. | 1 |
309
+ | ` provisioning.podAnnotations ` | Provisioning Pod annotations. | ` {} ` (evaluated as a template) |
309
310
| ` provisioning.resources ` | Kafka provisioning Job resources | ` Check values.yaml file ` |
310
311
| ` provisioning.topics ` | Kafka provisioning topics | ` [] ` |
311
312
| ` provisioning.schedulerName ` | Name of the k8s scheduler (other than default) for kafka provisioning | ` nil ` |
Original file line number Diff line number Diff line change 23
23
{{- include "common.tplvalues.render" (dict "value" .Values.podLabels "context" $) | nindent 8 }}
24
24
{{- end }}
25
25
annotations :
26
+ {{- if .Values.provisioning.podAnnotations }}
27
+ {{- include "common.tplvalues.render" (dict "value" .Values.provisioning.podAnnotations "context" $) | nindent 8 }}
28
+ {{- end }}
26
29
spec :
27
30
{{- include "kafka.imagePullSecrets" . | nindent 6 }}
28
31
{{- if .Values.provisioning.schedulerName }}
Original file line number Diff line number Diff line change @@ -893,6 +893,8 @@ provisioning:
893
893
# #
894
894
# schedulerName:
895
895
896
+ podAnnotations : {}
897
+
896
898
resources :
897
899
# We usually recommend not to specify default resources and to leave this as a conscious
898
900
# choice for the user. This also increases chances charts run on environments with little
You can’t perform that action at this time.
0 commit comments