44 lines
1.2 KiB
YAML
44 lines
1.2 KiB
YAML
# Default values for Jackett.
|
|
|
|
image:
|
|
# -- image repository
|
|
repository: eclipse-mosquitto
|
|
# -- image tag
|
|
tag: 2.0.12@sha256:ce08d3fe69d4170cea2426739af86ac95e683f01dd2c4141da661983a2401364
|
|
# -- 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:
|
|
protocol: TCP
|
|
enabled: true
|
|
port: 1883
|
|
|
|
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:
|
|
enabled: true
|
|
type: pvc
|
|
accessMode: ReadWriteOnce
|
|
size: "100Gi"
|
|
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:
|
|
enabled: true
|
|
type: pvc
|
|
accessMode: ReadWriteOnce
|
|
size: "100Gi"
|
|
mountPath: /mosquitto/configinc
|