d9c53db3cb
This PR contains the following updates: | Package | Update | Change | |---|---|---| | eclipse-mosquitto | digest | `da38d58` -> `cb3afd0` | --- > [!WARNING] > Some dependencies could not be looked up. Check the Dependency Dashboard for more information. --- ### 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://togithub.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4yNDkuMyIsInVwZGF0ZWRJblZlciI6IjM3LjI0OS4zIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIn0=--> --------- Co-authored-by: Stavros Kois <47820033+stavros-k@users.noreply.github.com>
86 lines
2.1 KiB
YAML
86 lines
2.1 KiB
YAML
image:
|
|
repository: eclipse-mosquitto
|
|
tag: 2.0.18@sha256:cb3afd02611b0c58b328196ab00de0158322b4c1e014841fb182d2a0ea3a79b9
|
|
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
|
|
portal:
|
|
open:
|
|
enabled: false
|