charts/charts/mosquitto/values.yaml

61 lines
1.7 KiB
YAML
Raw Normal View History

2021-02-28 09:07:26 +00:00
#
# IMPORTANT NOTE
#
# This chart inherits from our common library chart. You can check the default values/options here:
# https://github.com/k8s-at-home/charts/tree/master/charts/common/values.yaml
#
2020-09-11 11:46:25 +00:00
image:
repository: eclipse-mosquitto
pullPolicy: IfNotPresent
2021-02-28 09:07:26 +00:00
tag: 2.0.7
2020-09-11 11:46:25 +00:00
2021-02-28 09:07:26 +00:00
strategy:
type: Recreate
2020-09-11 11:46:25 +00:00
service:
type: ClusterIP
# loadBalancerIP:
annotations: {}
2021-02-28 09:07:26 +00:00
port:
port: 1883
name: mqtt
2021-03-14 21:41:35 +00:00
auth:
enabled: false
2021-02-28 09:07:26 +00:00
persistence:
data:
enabled: false
2021-02-28 09:07:26 +00:00
emptyDir: false
mountPath: /mosquitto/data
## Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
# storageClass: "-"
accessMode: ReadWriteOnce
size: 100Mi
## Do not delete the pvc upon helm uninstall
# skipuninstall: false
# existingClaim: ""
2021-03-14 21:41:35 +00:00
configinc:
# a persistent volume to place *.conf mosquitto-config-files in
enabled: false
emptyDir: false
mountPath: /mosquitto/configinc
## Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
# storageClass: "-"
accessMode: ReadWriteOnce
size: 100Mi
## Do not delete the pvc upon helm uninstall
# skipuninstall: false
# existingClaim: ""