-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathvalues.yaml
More file actions
186 lines (171 loc) · 5.56 KB
/
values.yaml
File metadata and controls
186 lines (171 loc) · 5.56 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
# Default values for home-assistant.
# This is a YAML-formatted file.
# Declare variables to be passed into your templates.
image:
# image.registry -- URL to registry
registry: docker.io
# image.repository -- Image repository name
repository: volantmq/volantmq
# image.tag -- Image repository tag
tag: v0.4.0-rc.8
# image.pullPolicy -- Image repository pull policy
pullPolicy: IfNotPresent
## Service configuration
service:
# service.type -- Kubernetes Service type
type: ClusterIP
# service.annotations -- Kubernetes Service annotations
annotations: {}
# service.labels -- Kubernetes Service lavels
labels: {}
# service.port -- Kubernetes Service port
port: 1883
# service.clusterIP -- Kubernetes clusterIp if any
clusterIP: None
## List of IP addresses at which the hass-configurator service is available
## Ref: https://kubernetes.io/docs/user-guide/services/#external-ips
##
# service.externalIPs -- Kubernetes Service externalIps
externalIPs: []
# service.loadBalancerIP -- Kubernetes Service LoadBalancerIp
loadBalancerIP: ""
# service.loadBalancerSourceRanges -- Kubernetes Service Load Balancer source Range
loadBalancerSourceRanges: []
# service.publishNotReadyAddresses -- Kubernetes Service publishNotReadyAddresses
publishNotReadyAddresses: false
metrics:
# metrics.enabled -- Enable Service Metrics
enabled: false
# podAnnotations:
# prometheus.io/scrape: "true"
# prometheus.io/port: "8080"
# Enable this if you're using https://github.com/coreos/prometheus-operator
serviceMonitor:
# metrics.serviceMonitor.enabled -- Enable Service Monitor
enabled: true
# metrics.serviceMonitor.namespace -- Specify a namespace if needed
namespace: prometheus
# metrics.serviceMonitor.interval -- fallback to the prometheus default unless specified
interval: 3s
# metrics.serviceMonitor.scrapeTimeout -- scrapeTimeout
# scrapeTimeout: 10s
selector:
# metrics.serviceMonitor.selector.release -- prometheus operator release
release: prometheus-operator
serviceAccount:
# serviceAccount.create -- Specifies whether a ServiceAccount should be created
##
create: false
# serviceAccount.name -- The name of the ServiceAccount to use.
## If not set and create is true, a name is generated using the fullname template
name:
## Persist data to a persistent volume
persistence:
# persistence.enabled -- Enable Persisting data to a persistent volume
enabled: true
## Data Persistent Volume Storage Class
## If defined, storageClassName: <storageClass>
## If set to "-", storageClassName: "", which disables dynamic provisioning
## If undefined (the default) or set to null, no storageClassName spec is
## set, choosing the default provisioner. (gp2 on AWS, standard on
## GKE, AWS & OpenStack)
##
# storageClass: "-"
# persistence.accessMode -- Define preferred access mode
accessMode: ReadWriteOnce
# persistence.size -- Define volume claim size(default 8GB)
size: 8Gi
# persistence.annotations -- Define PV annotations
annotations: {}
testFramework:
# testFramework.enabled -- Enable Test Framework
enabled: true
# testFramework.image -- Image to be used for testing of the chart
image: "bats/bats"
# testFramework.tag -- Image Tag for the test framework
tag: "v1.1.0"
# testFramework.securityContext -- define securityContext object if any
securityContext: {}
readinessProbe:
# readinessProbe.enable -- Enabling Readiness Probe
enable: true
# readinessProbe.interval -- Readiness check interval
interval: 60
# readinessProbe.timeout -- Define custom timeout
timeout: 3
# readinessProbe.initialDelay -- Intial Delay to take in account
initialDelay: 30
livenessProbe:
# livenessProbe.enable -- Enabling Readiness Probe
enable: false
# livenessProbe.initialDelay -- Intial Delay to take in account
initialDelay: 30
# livenessProbe.timeout -- Define custom timeout
timeout: 1
ingress:
# ingress.enabled -- Enable Ingress Object
enabled: false
# ingress.annotations -- Custom annotations for the ingress (e.g ingress.class )
annotations: {}
# kubernetes.io/ingress.class: nginx
# kubernetes.io/tls-acme: "true"
# ingress.labels -- Custom ingress lavels
labels: {}
# ingress.path -- Ingress accepted path
path: /
# ingress.hosts -- Ingress accepted hostnames
hosts:
- chart-example.local
# ingress.extraPaths -- Extra paths to prepend to every host configuration. This is useful when working with annotation based services.
extraPaths: []
# - path: /*
# backend:
# serviceName: ssl-redirect
# servicePort: use-annotation
# ingress.tls -- Ingress TLS configuration
tls: []
# - secretName: chart-example-tls
# hosts:
# - chart-example.local
# VolantMQ config
# config -- The VolantMQ config
config: |
system:
log:
console:
level: info # available levels: debug, info, warn, error, dpanic, panic, fatal
acceptor:
maxIncoming: 1000
preSpawn: 100
plugins:
enabled:
- health
config:
health:
- backend: health
config:
livenessEndpoint: live
readinessEndpoint: ready
auth:
anonymous: true
order:
- internal
mqtt:
version:
- v3.1.1
keepAlive:
period: 60
force: false
options:
connectTimeout: 2
offlineQoS0: true
sessionDups: false
retainAvail: true
subsOverlap: false
subsId: false
subsShared: false
subsWildcard: true
receiveMax: 65535
maxPacketSize: 268435455
maxTopicAlias: 65535
maxQoS: 2