Skip to content

Commit

Permalink
build(mosquitto): 0.0.16
Browse files Browse the repository at this point in the history
  • Loading branch information
JacekZubielik committed Aug 29, 2024
1 parent f66bc38 commit 3786923
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion charts/mosquitto/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
appVersion: 2.0.18
description: Eclipse Mosquitto MQTT
name: mosquitto
version: 0.0.15
version: 0.0.16
type: application
keywords:
- mqtt
Expand Down
3 changes: 2 additions & 1 deletion charts/mosquitto/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,8 @@ spec:
- name: mosquitto-data
{{- if .Values.persistence.enabled }}
persistentVolumeClaim:
claimName: {{ include "app.fullname" . }}
claimName: {{ if .Values.persistence.existingClaim }}{{ .Values.persistence.existingClaim }}
{{- end }}
{{- else }}
emptyDir: {}
{{- end -}}
Expand Down
2 changes: 1 addition & 1 deletion charts/mosquitto/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ nodeSelector:
affinity: {}
tolerations: []
persistence:
enabled: true
enabled: false
storageClass: local-path
accessMode: ReadWriteOnce
size: 1Gi
Expand Down

0 comments on commit 3786923

Please sign in to comment.