mirror of
https://github.com/nikdoof/helm-charts.git
synced 2025-12-14 05:52:17 +00:00
[aaisp-to-mqtt] Fix Base64 Function
This commit is contained in:
@@ -2,4 +2,4 @@ apiVersion: v1
|
||||
appVersion: "0.2"
|
||||
description: Pulls data from the AAISP CHAOSv2 API into MQTT
|
||||
name: aaisp-to-mqtt
|
||||
version: 0.2.0
|
||||
version: 0.2.1
|
||||
|
||||
@@ -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