File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1212| ` imagePullSecrets ` | Docker registry secret names as an array | ` [] ` |
1313| ` nameOverride ` | String to partially override chart name | ` "" ` |
1414| ` fullnameOverride ` | String to fully override app name | ` "" ` |
15+ | ` extraObjects ` | Arbitrary K8s resources | ` [] ` |
1516
1617### ServiceAccount configuration
1718
Original file line number Diff line number Diff line change @@ -2,6 +2,6 @@ apiVersion: v2
22name : kafka-ui
33description : A Helm chart for kafka-UI
44type : application
5- version : 1.6.4
5+ version : 1.7.0
66appVersion : v1.5.0
77icon : https://raw.githubusercontent.com/kafbat/kafka-ui/main/documentation/images/logo_new.png
Original file line number Diff line number Diff line change 1+ {{ range .Values.extraObjects }}
2+ ---
3+ {{- if typeIs "string" . }}
4+ {{ tpl . $ }}
5+ {{ else }}
6+ {{ tpl (. | toYaml) $ }}
7+ {{- end }}
8+ {{ end }}
Original file line number Diff line number Diff line change @@ -294,3 +294,6 @@ affinity: {}
294294
295295# # @param revisionHistoryLimit [nullable] Specify how many old ReplicaSets for this Deployment you want to retain
296296revisionHistoryLimit : null
297+
298+ # # @param extraObjects Arbitrary Kubernetes spec
299+ extraObjects : []
You can’t perform that action at this time.
0 commit comments