-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvalues.yaml
More file actions
85 lines (69 loc) · 1.48 KB
/
values.yaml
File metadata and controls
85 lines (69 loc) · 1.48 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
replicaCount: 1
image:
repository: eclipse-mosquitto
tag: "2.0.18"
pullPolicy: IfNotPresent
nameOverride: ""
fullnameOverride: ""
service:
type: ClusterIP
mqtt:
port: 1883
mqtts:
port: 8883
websockets:
port: 9001
persistence:
enabled: true
storageClass: "longhorn"
accessMode: ReadWriteOnce
size: 1Gi
retain: true
# Authentication configuration
auth:
enabled: false # Set to true to enable password authentication
# When enabled, you'll need to create users manually or use init containers
users: []
# Example:
# - username: admin
# password: admin123
# - username: user
# password: user123
config:
mosquitto.conf: |
# Persistence
persistence true
persistence_location /mosquitto/data/
# Logging
log_dest file /mosquitto/log/mosquitto.log
log_dest stdout
log_type error
log_type warning
log_type notice
log_type information
connection_messages true
log_timestamp true
# Authentication
allow_anonymous true
# Default MQTT port
listener 1883
protocol mqtt
# WebSocket support
listener 9001
protocol websockets
# MQTT over TLS/SSL (when certificates are available)
listener 8883
protocol mqtt
cafile /etc/ssl/certs/ca-certificates.crt
resources:
requests:
memory: "64Mi"
cpu: "50m"
limits:
memory: "128Mi"
cpu: "100m"
nodeSelector: {}
tolerations: []
affinity: {}
env:
TZ: "America/Chicago"