Skip to content

Commit c736a05

Browse files
committed
build(zigbee2mqtt): version: 0.0.4
1 parent 6fa1ee7 commit c736a05

3 files changed

Lines changed: 26 additions & 21 deletions

File tree

charts/zigbee2mqtt/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
2-
appVersion: 1.38.0
2+
appVersion: 1.39.0
33
description: Zigbee Bridge via MQTT
44
name: zigbee2mqtt
5-
version: 0.0.3
5+
version: 0.0.4
66
type: application
77
keywords:
88
- zigbee2mqtt

charts/zigbee2mqtt/templates/statefullset.yaml

Lines changed: 7 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -129,23 +129,21 @@ spec:
129129
volumes:
130130
- name: config-storage
131131
{{- if .Values.persistence.enabled }}
132-
{{- if .Values.persistence.configstorage.hostPath }}
132+
{{- if .Values.persistence.hostPath }}
133133
hostPath:
134-
path: {{.Values.persistence.configstorage.hostPath}}
134+
path: {{.Values.persistence.hostPath}}
135135
{{- else }}
136136
persistentVolumeClaim:
137137
claimName: {{ if .Values.persistence.existingClaim }}{{ .Values.persistence.existingClaim }}{{- else }}{{ template "app.fullname" . }}{{- end }}
138138
{{- end }}
139139
{{- else }}
140140
emptyDir: {}
141141
{{ end }}
142-
{{- if and .Values.persistence.enabled .Values.persistence.existingClaim }}
143-
- name: config-storage
144-
persistentVolumeClaim:
145-
claimName: {{ .Values.persistence.existingClaim }}
146-
{{- end }}
147-
{{- range .Values.hostMounts }}
142+
{{- range .Values.hostMounts }}
148143
- name: {{ .name }}
149144
hostPath:
150145
path: {{.hostPath}}
151-
{{- end }}
146+
{{- if .type }}
147+
type: {{ .type }}
148+
{{- end }}
149+
{{- end }}

charts/zigbee2mqtt/values.yaml

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -149,16 +149,23 @@ tolerations: []
149149

150150
persistence:
151151
enabled: false
152-
configstorage:
153-
hostPath: {}
154-
pvc:
155-
enabled: false
156-
# accessModes:
157-
# - {}
158-
# resources:
159-
# requests:
160-
# storage: 2Gi
161-
# storageClassName: ""
152+
## esphome data Persistent Volume Storage Class
153+
## If defined, storageClassName: <storageClass>
154+
## If set to "-", storageClassName: "", which disables dynamic provisioning
155+
## If undefined (the default) or set to null, no storageClassName spec is
156+
## set, choosing the default provisioner. (gp2 on AWS, standard on
157+
## GKE, AWS & OpenStack)
158+
##
159+
# storageClass: "-"
160+
##
161+
## If you want to reuse an existing claim, you can pass the name of the PVC using
162+
## the existingClaim variable
163+
# existingClaim: your-claim
164+
##
165+
## If you want to use a volume on the host machine instead of a PVC:
166+
# hostPath: /path/to/the/config/folder
167+
accessMode: ReadWriteOnce
168+
size: 1Gi
162169

163170
# Mount devices or folders from the host machine. Can be used for USB device mounting.
164171
# hostMounts:

0 commit comments

Comments
 (0)