File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ apiVersion: v2
22appVersion : 1.39.1
33description : Zigbee Bridge via MQTT
44name : zigbee2mqtt
5- version : 0.0.9
5+ version : 0.0.10
66type : application
77keywords :
88 - zigbee2mqtt
Original file line number Diff line number Diff line change @@ -109,10 +109,37 @@ spec:
109109 mountPath : /data
110110 - name : sniffer
111111 mountPath : {{ .Values.config.serial.port }}
112+ - name : zigbee2mqtt-ca-cert
113+ mountPath : /cert/ca.crt
114+ subPath : ca.crt
115+ - name : zigbee2mqtt-client-cert
116+ mountPath : /cert/client.crt
117+ subPath : server.crt
118+ - name : zigbee2mqtt-client-key
119+ mountPath : /cert/client.key
120+ subPath : client.key
112121 volumes :
113122 - name : zigbee2mqtt
114123 configMap :
115124 name : {{ include "app.fullname" . }}
125+ - name : zigbee2mqtt-ca-cert
126+ configMap :
127+ name : {{ include "app.fullname" . }}-certs
128+ items :
129+ - key : ca.crt
130+ path : ca.crt
131+ - name : zigbee2mqtt-client-cert
132+ configMap :
133+ name : {{ include "app.fullname" . }}-certs
134+ items :
135+ - key : client.crt
136+ path : client.crt
137+ - name : zigbee2mqtt-client-key
138+ configMap :
139+ name : {{ include "app.fullname" . }}-certs
140+ items :
141+ - key : client.key
142+ path : client.key
116143 - name : sniffer
117144 hostPath :
118145 path : {{ required "You must specify a path to your zigbee sniffer" .Values.config.serial.port }}
You can’t perform that action at this time.
0 commit comments