6eff7b616e
This PR contains the following updates: | Package | Update | Change | |---|---|---| | eclipse-mosquitto | digest | `6852da9` → `914f529` | --- > [!WARNING] > Some dependencies could not be looked up. Check the [Dependency Dashboard](../issues/18710) for more information. Add the preset `:preserveSemverRanges` to your config if you don't want to pin your dependencies. --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yOS4yIiwidXBkYXRlZEluVmVyIjoiNDMuMjkuMiIsInRhcmdldEJyYW5jaCI6Im1hc3RlciIsImxhYmVscyI6WyJhcHAvbW9zcXVpdHRvIiwiYXV0b21lcmdlIiwicmVub3ZhdGUvY29udGFpbmVyIiwidHlwZS9kaWdlc3QiXX0=-->
84 lines
2.2 KiB
YAML
84 lines
2.2 KiB
YAML
# yaml-language-server: $schema=./values.schema.json
|
|
image:
|
|
repository: eclipse-mosquitto
|
|
tag: 2.0.22@sha256:914f529386804c8278a4e581526b9be5e1604df44b30daabc70aa97dcefe5268
|
|
pullPolicy: IfNotPresent
|
|
service:
|
|
main:
|
|
ports:
|
|
main:
|
|
port: 1883
|
|
targetPort: 1883
|
|
websockets:
|
|
enabled: true
|
|
ports:
|
|
websockets:
|
|
enabled: true
|
|
port: 9001
|
|
targetPort: 9001
|
|
workload:
|
|
main:
|
|
podSpec:
|
|
containers:
|
|
main:
|
|
probes:
|
|
liveness:
|
|
enabled: true
|
|
type: tcp
|
|
port: 1883
|
|
readiness:
|
|
enabled: true
|
|
type: tcp
|
|
port: 1883
|
|
startup:
|
|
enabled: true
|
|
type: tcp
|
|
port: 1883
|
|
ingress:
|
|
websockets:
|
|
enabled: false
|
|
targetSelector:
|
|
websockets: websockets
|
|
auth:
|
|
# -- By enabling this, `allow_anonymous` gets set to `false` in the mosquitto config.
|
|
enabled: false
|
|
websockets:
|
|
# -- By enabling this, an additional listener with protocol websockets is added in the mosquitto config.
|
|
enabled: false
|
|
configmap:
|
|
config:
|
|
enabled: true
|
|
data:
|
|
mosquitto.conf: |
|
|
listener {{ .Values.service.main.ports.main.targetPort }}
|
|
{{- if .Values.websockets.enabled }}
|
|
listener {{ .Values.service.websockets.ports.websockets.targetPort }}
|
|
protocol websockets
|
|
{{- end }}
|
|
{{- if .Values.auth.enabled }}
|
|
allow_anonymous false
|
|
{{- else }}
|
|
allow_anonymous true
|
|
{{- end }}
|
|
{{- if .Values.persistence.data.enabled }}
|
|
persistence true
|
|
persistence_location {{ .Values.persistence.data.mountPath }}
|
|
autosave_interval 1800
|
|
{{- end }}
|
|
{{- if .Values.persistence.configinc.enabled }}
|
|
include_dir {{ .Values.persistence.configinc.mountPath }}
|
|
{{- end }}
|
|
persistence:
|
|
data:
|
|
enabled: true
|
|
mountPath: "/mosquitto/data"
|
|
configinc:
|
|
enabled: true
|
|
mountPath: "/mosquitto/configinc"
|
|
mosquitto-config:
|
|
enabled: true
|
|
mountPath: "/mosquitto/config/mosquitto.conf"
|
|
subPath: "mosquitto.conf"
|
|
type: configmap
|
|
objectName: config
|