diff --git a/charts/aaisp-to-mqtt/Chart.yaml b/charts/aaisp-to-mqtt/Chart.yaml index 70e9efb..c1bccc8 100644 --- a/charts/aaisp-to-mqtt/Chart.yaml +++ b/charts/aaisp-to-mqtt/Chart.yaml @@ -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 diff --git a/charts/aaisp-to-mqtt/templates/secrets.yaml b/charts/aaisp-to-mqtt/templates/secrets.yaml index 5575137..7b50aaa 100644 --- a/charts/aaisp-to-mqtt/templates/secrets.yaml +++ b/charts/aaisp-to-mqtt/templates/secrets.yaml @@ -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 }} \ No newline at end of file