[Helm] base64 encode secrets (#2492)
* Fix #2393 * Bump chart version Co-authored-by: Roman Zabaluev <rzabaluev@provectus.com>
This commit is contained in:
parent
b135594e3f
commit
89a2c8d920
2 changed files with 4 additions and 2 deletions
|
@ -2,6 +2,6 @@ apiVersion: v2
|
||||||
name: kafka-ui
|
name: kafka-ui
|
||||||
description: A Helm chart for kafka-UI
|
description: A Helm chart for kafka-UI
|
||||||
type: application
|
type: application
|
||||||
version: 0.4.2
|
version: 0.4.3
|
||||||
appVersion: latest
|
appVersion: latest
|
||||||
icon: https://github.com/provectus/kafka-ui/raw/master/documentation/images/kafka-ui-logo.png
|
icon: https://github.com/provectus/kafka-ui/raw/master/documentation/images/kafka-ui-logo.png
|
||||||
|
|
|
@ -6,4 +6,6 @@ metadata:
|
||||||
{{- include "kafka-ui.labels" . | nindent 4 }}
|
{{- include "kafka-ui.labels" . | nindent 4 }}
|
||||||
type: Opaque
|
type: Opaque
|
||||||
data:
|
data:
|
||||||
{{- toYaml .Values.envs.secret | nindent 2 }}
|
{{- range $key, $val := .Values.envs.secret }}
|
||||||
|
{{ $key }}: {{ $val | b64enc | quote }}
|
||||||
|
{{- end -}}
|
||||||
|
|
Loading…
Add table
Reference in a new issue