Skip to content

Commit e023713

Browse files
Merge pull request #82 from JacekZubielik/zigbee2mqtt
build(zigbee2mqtt): 0.0.10
2 parents 4dc5afe + b35ef59 commit e023713

2 files changed

Lines changed: 28 additions & 1 deletion

File tree

charts/zigbee2mqtt/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: 1.39.1
33
description: Zigbee Bridge via MQTT
44
name: zigbee2mqtt
5-
version: 0.0.9
5+
version: 0.0.10
66
type: application
77
keywords:
88
- zigbee2mqtt

charts/zigbee2mqtt/templates/statefullset.yaml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)