Commit 212a3c1 1 parent 558b944 commit 212a3c1 Copy full SHA for 212a3c1
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,6 +2,6 @@ apiVersion: v2
2
2
name : kafka-ui
3
3
description : A Helm chart for kafka-UI
4
4
type : application
5
- version : 1.4.6
5
+ version : 1.4.7
6
6
appVersion : v1.0.0
7
7
icon : https://raw.githubusercontent.com/kafbat/kafka-ui/main/documentation/images/logo_new.png
Original file line number Diff line number Diff line change 50
50
| ` podAnnotations ` | Annotations for Kafka-UI pods | ` {} ` |
51
51
| ` podLabels ` | Extra labels for Kafka-UI pods | ` {} ` |
52
52
| ` annotations ` | Annotations to be added to kafka-ui Deployment | ` {} ` |
53
+ | ` labels ` | Labels to be added to kafka-ui Deployment | ` {} ` |
53
54
| ` probes.useHttpsScheme ` | Set field schema as HTTPS for readines and liveness probe | ` false ` |
54
55
55
56
### Security Context
Original file line number Diff line number Diff line change @@ -5,6 +5,9 @@ metadata:
5
5
namespace : {{ .Release.Namespace }}
6
6
labels :
7
7
{{- include "kafka-ui.labels" . | nindent 4 }}
8
+ {{- if .Values.labels }}
9
+ {{- toYaml .Values.labels | nindent 4 }}
10
+ {{- end }}
8
11
{{- with .Values.annotations }}
9
12
annotations :
10
13
{{- toYaml . | nindent 4 }}
Original file line number Diff line number Diff line change @@ -158,6 +158,9 @@ podLabels: {}
158
158
# # @param annotations [object] Annotations to be added to kafka-ui Deployment
159
159
annotations : {}
160
160
161
+ # # @param labels [object] Labels to be added to kafka-ui Deployment
162
+ labels : {}
163
+
161
164
# # @param probes.useHttpsScheme Set field schema as HTTPS for readines and liveness probe
162
165
# #
163
166
probes :
You can’t perform that action at this time.
0 commit comments