-
Notifications
You must be signed in to change notification settings - Fork 0
/
values.yaml
227 lines (177 loc) · 5.91 KB
/
values.yaml
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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
# Default values for water-analytics-cluster.
# Declare variables to be passed into your templates.
# Variables will overwrite values in each subchart's values.yaml
###########################################
## Global variables for the cassandra chart
cassandra:
## boolean to enable/disable chart
enabled: true
## configure cluster size
replicas: 3
## configure the cql NodePort for external access
## will be configured automatically if left empty
service:
nodePorts:
cql: 30001
## configure the database credentials
dbUser:
user: gis
forcePassword: true
password: 123456
## enable client to node encryption by setting clientEncryption: true
## and adding a secret with the keystore, keystore password, truststore, truststore password
##
## To create a secret:
## kubectl create secret generic cassandra-tls --from-file=keystore=./keystore \
## --from-file=truststore=./truststore --from-literal=keystore-password=cassandra \
## --from-literal=truststore-password=cassandra
##
## Comment out tlsEncryptionSecretName if client encryption is disabled
cluster:
clientEncryption: false
#tlsEncryptionSecretName: cassandra-tls
#######################################
## Global variables for the flink chart
## DEPRECATED: use flink-native chart instead
flink:
## boolean to enable/disable chart
enabled: false
## configure jobmanager cluster size
jobmanager:
replicas: 1
## configure flink taskmanager cluster size
taskmanager:
replicas: 4
## configure the NodePort for external access
## will be configured automatically if left empty
#nodePort: 31337
## High availability configurations
highAvailability:
enabled: false
## The path where metadata for master recovery is persisted. While ZooKeeper stores
## the small ground truth for checkpoint and leader election, this location stores
## the larger objects, like persisted dataflow graphs.
##
## Must be a durable file system that is accessible from all nodes
## (like HDFS, S3, Ceph, nfs, ...)
storageDir: hdfs:///flink/ha
## The list of ZooKeeper quorum peers that coordinate the high-availability
## setup. This must be a list of the form:
## "host1:clientPort,host2:clientPort,..." (default clientPort: 2181)
zookeeperQuorum: zk-0.zk-hs.namespace.svc.cluster.local:2181
## The ID of the Flink cluster, used to separate multiple Flink clusters from each other.
## Needs to be set for standalone clusters but is automatically inferred in YARN and Mesos.
clusterId: /flink
#######################################
## Global variables for the flink native kubernetes chart
flink-native:
## boolean to enable/disable chart
enabled: true
## The cluster-id is used for identifying a unique Flink cluster.
## The id must only contain lowercase alphanumeric characters and "-".
clusterid: "flink-native"
## configure the NodePort for external access
## will be configured automatically if left empty
#nodePort: 30881
#########################################
## Global variables for the grafana chart
grafana:
## boolean to enable/disable chart
enabled: true
## configure cluster size
replicas: 1
#########################################
## Global variables for the kafka chart
kafka:
## boolean to enable/disable chart
enabled: true
## configure cluster size
replicas: 3
## configure NodePorts for external access
## Length must be the same as replicaCount
externalAccess:
service:
nodePorts:
- 32090
- 32091
- 32092
#########################################
## Global variables for the kafka chart
kafka-connect:
## boolean to enable/disable chart
enabled: true
# adjust the following values according to your cluster IP
# and credentials defined in rabbitMQ (via loadDefinition)
service:
mqttServer: tcp://127.0.0.1:31777
mqttUser: kafka
mqttPassword: 12345
mqttTopics: mqttSensorDataTopic
kafkaBroker: 127.0.0.1:32090
kafkaTopic: kafkaSensorDataTopic
#########################################
## Global variables for the kafdrop chart
kafdrop:
## boolean to enable/disable chart
enabled: true
## configure cluster size
replicas: 1
## configure NodePort for external access
service:
nodePort: 30900
############################################
## Global variables for the prometheus chart
prometheus:
## boolean to enable/disable chart
enabled: true
## configure cluster size
replicas: 1
#######################################
## Enable the Local PV Static Provisioner chart
provisioner:
enabled: false
##########################################
## Global variables for the rabbitmq chart
rabbitmq:
## boolean to enable/disable chart
enabled: true
## configure cluster size
replicas: 3
## configure NodePorts for external access
service:
## Amqp NodePort
amqpNodePort: 30777
## Amqp NodePort Tls
amqpTlsNodePort: 30778
## MQTT NodePort
mqttNodePort: 31777
## MQTT NodePort Tls
mqttTlsNodePort: 31778
## enable TLS support by setting enabled: true
## and providing a secret containing the certificates
##
## To create the secret:
## kubectl create secret generic rabbitmq-certificates --from-file=./ca.crt \
## --from-file=./tls.crt --from-file=./tls.key
tls:
enabled: true
existingSecret: rabbitmq-certificates
## load a definitions file to configure RabbitMQ from a Kubernetes secret
loadDefinition:
enabled: true
existingSecret: load-definition
#######################################
## Global variables for the redis chart
redis:
enabled: true
## configure cluster size
replicas: 1
## configure the NodePort for external access
## will be configured automatically if left empty
#nodePort: 31002
#######################################
## Global variables for the zookeeper chart
zookeeper:
enabled: false
## configure cluster size
replicas: 3