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:
|
2021-03-16 16:38:42 +00:00
|
|
|
# https://github.com/k8s-at-home/library-charts/tree/main/charts/stable/common/values.yaml
|
2021-02-28 09:07:26 +00:00
|
|
|
#
|
2020-09-11 11:46:25 +00:00
|
|
|
|
|
|
|
image:
|
2021-06-09 23:08:40 +00:00
|
|
|
# -- image repository
|
2020-09-11 11:46:25 +00:00
|
|
|
repository: eclipse-mosquitto
|
2021-06-09 23:08:40 +00:00
|
|
|
# -- image tag
|
|
|
|
tag: 2.0.11
|
|
|
|
# -- image pull policy
|
2020-09-11 11:46:25 +00:00
|
|
|
pullPolicy: IfNotPresent
|
|
|
|
|
2021-06-09 23:08:40 +00:00
|
|
|
# -- Configures service settings for the chart. Normally this does not need to be modified.
|
|
|
|
# @default -- See values.yaml
|
2020-09-11 11:46:25 +00:00
|
|
|
service:
|
2021-06-09 23:08:40 +00:00
|
|
|
main:
|
|
|
|
ports:
|
|
|
|
http:
|
|
|
|
enabled: false
|
|
|
|
mqtt:
|
|
|
|
enabled: true
|
|
|
|
port: 1883
|
2020-10-26 14:08:00 +00:00
|
|
|
|
2021-03-14 21:41:35 +00:00
|
|
|
auth:
|
2021-06-09 23:08:40 +00:00
|
|
|
# -- By enabling this, `allow_anonymous` gets set to `false` in the mosquitto config.
|
2021-03-14 21:41:35 +00:00
|
|
|
enabled: false
|
|
|
|
|
2021-02-28 09:07:26 +00:00
|
|
|
persistence:
|
2021-06-09 23:08:40 +00:00
|
|
|
# -- Configure a persistent volume to place mosquitto data in.
|
|
|
|
# When enabled, this enables `persistence` and `persistence_location` in the mosquitto config.
|
|
|
|
# @default -- See values.yaml
|
2021-02-28 09:07:26 +00:00
|
|
|
data:
|
2020-11-08 17:41:30 +00:00
|
|
|
enabled: false
|
2021-02-28 09:07:26 +00:00
|
|
|
mountPath: /mosquitto/data
|
2021-06-09 23:08:40 +00:00
|
|
|
# -- Configure a persistent volume to place *.conf mosquitto-config-files in.
|
|
|
|
# When enabled, this gets set as `include_dir` in the mosquitto config.
|
|
|
|
# @default -- See values.yaml
|
2021-03-14 21:41:35 +00:00
|
|
|
configinc:
|
|
|
|
enabled: false
|
|
|
|
mountPath: /mosquitto/configinc
|
|
|
|
accessMode: ReadWriteOnce
|
|
|
|
size: 100Mi
|