4d1a3d4fc1
This PR contains the following updates: | Package | Update | Change | |---|---|---| | eclipse-mosquitto | digest | `914f529` → `212f89e` | --- > [!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**: (UTC) - 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:eyJjcmVhdGVkSW5WZXIiOiI0My4xMzAuMSIsInVwZGF0ZWRJblZlciI6IjQzLjEzMC4xIiwidGFyZ2V0QnJhbmNoIjoibWFzdGVyIiwibGFiZWxzIjpbImFwcC9tb3NxdWl0dG8iLCJhdXRvbWVyZ2UiLCJyZW5vdmF0ZS9jb250YWluZXIiLCJ0eXBlL2RpZ2VzdCJdfQ==-->
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:212f89e1eaeb2c322d6441b64396e3346026674db8fa9c27beac293405c32b3c
|
|
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
|