mirror of
https://github.com/nikdoof/helm-charts.git
synced 2025-12-14 14:02:17 +00:00
[aaisp-to-mqtt] Fix Base64 Function
This commit is contained in:
@@ -11,10 +11,10 @@ metadata:
|
||||
app.kubernetes.io/managed-by: {{ include "aaisp-to-mqtt.name" . }}
|
||||
type: Opaque
|
||||
data:
|
||||
aaisp.username: {{ .Values.aaisp.username | base64 }}
|
||||
aaisp.password: {{ .Values.aaisp.password | base64 }}
|
||||
aaisp.username: {{ .Values.aaisp.username | b64enc }}
|
||||
aaisp.password: {{ .Values.aaisp.password | b64enc }}
|
||||
{{- if .Values.mqtt.authenticated }}
|
||||
mqtt.username: {{ .Values.mqtt.username | base64 }}
|
||||
mqtt.password: {{ .Values.mqtt.password | base64 }}
|
||||
mqtt.username: {{ .Values.mqtt.username | b64enc }}
|
||||
mqtt.password: {{ .Values.mqtt.password | b64enc }}
|
||||
{{- end }}
|
||||
{{- end }}
|
||||
Reference in New Issue
Block a user