File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11apiVersion : v2
2- appVersion : 1.38 .0
2+ appVersion : 1.39 .0
33description : Zigbee Bridge via MQTT
44name : zigbee2mqtt
5- version : 0.0.3
5+ version : 0.0.4
66type : application
77keywords :
88 - zigbee2mqtt
Original file line number Diff line number Diff 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 }}
Original file line number Diff line number Diff line change @@ -149,16 +149,23 @@ tolerations: []
149149
150150persistence :
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:
You can’t perform that action at this time.
0 commit comments