mirror of
https://github.com/k8s-at-home/charts.git
synced 2025-01-23 15:39:02 +00:00
[mosquitto] Add per_listener_settings option (#1623)
This commit is contained in:
parent
d35052eb8a
commit
3b54c90168
@ -3,7 +3,7 @@ apiVersion: v2
|
||||
appVersion: 2.0.11
|
||||
description: Eclipse Mosquitto - An open source MQTT broker
|
||||
name: mosquitto
|
||||
version: 4.3.2
|
||||
version: 4.4.0
|
||||
kubeVersion: ">=1.16.0-0"
|
||||
keywords:
|
||||
- mosquitto
|
||||
@ -22,5 +22,5 @@ dependencies:
|
||||
version: 4.4.2
|
||||
annotations:
|
||||
artifacthub.io/changes: |-
|
||||
- kind: changed
|
||||
description: Upgraded `common` chart dependency to version 4.4.2
|
||||
- kind: added
|
||||
description: Added support for enabling `per_listener_settings`
|
||||
|
@ -8,6 +8,7 @@ metadata:
|
||||
{{- include "common.labels" . | nindent 4 }}
|
||||
data:
|
||||
mosquitto.conf: |
|
||||
per_listener_settings {{ .Values.perListenerSettings }}
|
||||
listener {{ .Values.service.main.ports.mqtt.port }}
|
||||
{{- if .Values.auth.enabled }}
|
||||
allow_anonymous false
|
||||
|
@ -28,6 +28,9 @@ auth:
|
||||
# -- By enabling this, `allow_anonymous` gets set to `false` in the mosquitto config.
|
||||
enabled: false
|
||||
|
||||
# -- By enabling this, authentication and access control settings will be controlled on a per-listener basis
|
||||
perListenerSettings: false
|
||||
|
||||
persistence:
|
||||
# -- Configure a persistent volume to place mosquitto data in.
|
||||
# When enabled, this enables `persistence` and `persistence_location` in the mosquitto config.
|
||||
|
Loading…
Reference in New Issue
Block a user