Skip to content

Commit

Permalink
Merge pull request #82 from JacekZubielik/zigbee2mqtt
Browse files Browse the repository at this point in the history
build(zigbee2mqtt): 0.0.10
  • Loading branch information
JacekZubielik authored Aug 21, 2024
2 parents 4dc5afe + b35ef59 commit e023713
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/zigbee2mqtt/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 1.39.1
description: Zigbee Bridge via MQTT
name: zigbee2mqtt
version: 0.0.9
version: 0.0.10
type: application
keywords:
- zigbee2mqtt
Expand Down
27 changes: 27 additions & 0 deletions charts/zigbee2mqtt/templates/statefullset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -109,10 +109,37 @@ spec:
mountPath: /data
- name: sniffer
mountPath: {{ .Values.config.serial.port }}
- name: zigbee2mqtt-ca-cert
mountPath: /cert/ca.crt
subPath: ca.crt
- name: zigbee2mqtt-client-cert
mountPath: /cert/client.crt
subPath: server.crt
- name: zigbee2mqtt-client-key
mountPath: /cert/client.key
subPath: client.key
volumes:
- name: zigbee2mqtt
configMap:
name: {{ include "app.fullname" . }}
- name: zigbee2mqtt-ca-cert
configMap:
name: {{ include "app.fullname" . }}-certs
items:
- key: ca.crt
path: ca.crt
- name: zigbee2mqtt-client-cert
configMap:
name: {{ include "app.fullname" . }}-certs
items:
- key: client.crt
path: client.crt
- name: zigbee2mqtt-client-key
configMap:
name: {{ include "app.fullname" . }}-certs
items:
- key: client.key
path: client.key
- name: sniffer
hostPath:
path: {{ required "You must specify a path to your zigbee sniffer" .Values.config.serial.port }}
Expand Down

0 comments on commit e023713

Please sign in to comment.