diff --git a/charts/mosquitto/Chart.yaml b/charts/mosquitto/Chart.yaml index 1708b0b..6709cef 100644 --- a/charts/mosquitto/Chart.yaml +++ b/charts/mosquitto/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 appVersion: 2.0.18 description: Eclipse Mosquitto MQTT name: mosquitto -version: 0.0.5 +version: 0.0.6 type: application keywords: - mqtt diff --git a/charts/mosquitto/templates/deployment.yaml b/charts/mosquitto/templates/deployment.yaml index 2b4dd0e..0850828 100644 --- a/charts/mosquitto/templates/deployment.yaml +++ b/charts/mosquitto/templates/deployment.yaml @@ -107,9 +107,9 @@ spec: - name: mosquitto-conf mountPath: /mosquitto/config/mosquitto.conf subPath: mosquitto.conf - # - name: mosquitto-passwd - # mountPath: /mosquitto/password_file - # subPath: password_file + - name: mosquitto-passwd + mountPath: /mosquitto/password_file + subPath: password_file - name: mosquitto-ca-cert mountPath: /mosquitto/config/certs/ca.crt subPath: ca.crt @@ -125,13 +125,13 @@ spec: resources: {{- toYaml .Values.resources | nindent 12 }} volumes: - # - name: mosquitto-passwd - # secret: - # secretName: mosquitto-secrets - # items: - # - key: password_file - # path: password_file - # mode: 0644 + - name: mosquitto-passwd + secret: + secretName: mosquitto-secrets + items: + - key: password_file + path: password_file + mode: 0644 - name: mosquitto-conf configMap: name: {{ include "app.fullname" . }}