File tree 4 files changed +8
-1
lines changed
4 files changed +8
-1
lines changed Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v1
2
2
description : Apache Kafka is publish-subscribe messaging rethought as a distributed
3
3
commit log.
4
4
name : kafka
5
- version : 0.21.1
5
+ version : 0.21.2
6
6
appVersion : 5.0.1
7
7
keywords :
8
8
- kafka
Original file line number Diff line number Diff line change @@ -82,6 +82,7 @@ following configurable parameters:
82
82
| ` external.type ` | Service Type. | ` NodePort ` |
83
83
| ` external.distinct ` | Distinct DNS entries for each created A record. | ` false ` |
84
84
| ` external.annotations ` | Additional annotations for the external service. | ` {} ` |
85
+ | ` external.labels ` | Additional labels for the external service. | ` {} ` |
85
86
| ` external.loadBalancerIP ` | Add Static IP to the type Load Balancer. Depends on the provider if enabled | ` [] `
86
87
| ` external.loadBalancerSourceRanges ` | Add IP ranges that are allowed to access the Load Balancer. | ` [] `
87
88
| ` podAnnotations ` | Annotation to be added to Kafka pods | ` {} ` |
Original file line number Diff line number Diff line change @@ -38,6 +38,9 @@ metadata:
38
38
labels :
39
39
{{- include "kafka.broker.labels" $root | nindent 4 }}
40
40
pod : {{ $responsiblePod | quote }}
41
+ {{- if $root.Values.external.labels }}
42
+ {{ toYaml $root.Values.external.labels | indent 4 }}
43
+ {{- end }}
41
44
spec :
42
45
type : {{ $root.Values.external.type }}
43
46
ports :
Original file line number Diff line number Diff line change @@ -142,6 +142,9 @@ external:
142
142
type : NodePort
143
143
# annotations:
144
144
# service.beta.kubernetes.io/openstack-internal-load-balancer: "true"
145
+ # Labels to be added to external services
146
+ # labels:
147
+ # aLabel: "value"
145
148
dns :
146
149
useInternal : false
147
150
useExternal : true
You can’t perform that action at this time.
0 commit comments