2021-06-11 15:18:00 +00:00
|
|
|
# Default values for Jackett.
|
|
|
|
|
|
|
|
image:
|
|
|
|
# -- image repository
|
2021-09-11 10:03:46 +00:00
|
|
|
repository: eclipse-mosquitto
|
2021-06-11 15:18:00 +00:00
|
|
|
# -- image tag
|
2021-11-09 08:27:44 +00:00
|
|
|
tag: 2.0.13@sha256:7733a3909736a1a5569e461b4d77b71ebcb43aee19156bacd93d20fd165df5f9
|
2021-06-11 15:18:00 +00:00
|
|
|
# -- image pull policy
|
|
|
|
pullPolicy: IfNotPresent
|
|
|
|
|
|
|
|
# -- Configures service settings for the chart. Normally this does not need to be modified.
|
|
|
|
# @default -- See values.yaml
|
|
|
|
service:
|
|
|
|
main:
|
|
|
|
ports:
|
|
|
|
main:
|
2021-06-14 19:21:21 +00:00
|
|
|
protocol: TCP
|
2021-06-11 15:18:00 +00:00
|
|
|
enabled: true
|
|
|
|
port: 1883
|
2021-11-06 21:55:18 +00:00
|
|
|
targetPort: 1883
|
2021-06-11 15:18:00 +00:00
|
|
|
|
|
|
|
auth:
|
|
|
|
# -- By enabling this, `allow_anonymous` gets set to `false` in the mosquitto config.
|
|
|
|
enabled: false
|
|
|
|
|
|
|
|
persistence:
|
|
|
|
# -- 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
|
|
|
|
data:
|
2021-08-29 12:02:17 +00:00
|
|
|
enabled: true
|
|
|
|
type: pvc
|
|
|
|
accessMode: ReadWriteOnce
|
|
|
|
size: "100Gi"
|
2021-06-11 15:18:00 +00:00
|
|
|
mountPath: /mosquitto/data
|
|
|
|
# -- 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
|
|
|
|
configinc:
|
2021-08-29 12:02:17 +00:00
|
|
|
enabled: true
|
|
|
|
type: pvc
|
2021-06-11 15:18:00 +00:00
|
|
|
accessMode: ReadWriteOnce
|
2021-08-29 12:02:17 +00:00
|
|
|
size: "100Gi"
|
|
|
|
mountPath: /mosquitto/configinc
|