-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathvalues.schema.json
More file actions
448 lines (448 loc) · 13.8 KB
/
values.schema.json
File metadata and controls
448 lines (448 loc) · 13.8 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
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
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
{
"$schema": "http://json-schema.org/draft-07/schema#",
"type": "object",
"properties": {
"nameOverride": {
"type": "string",
"description": "Overrides the name of the chart."
},
"fullnameOverride": {
"type": "string",
"description": "Overrides the full name of the chart."
},
"namespaceDomainPattern": {
"type": "string",
"description": "Custom cluster domain of Kubernetes cluster."
},
"clickhouse": {
"type": "object",
"properties": {
"defaultUser": {
"type": "object",
"properties": {
"password": {
"type": "string",
"description": "Password for the default ClickHouse user."
},
"allowExternalAccess": {
"type": "boolean",
"description": "Allow the default user to access ClickHouse from any IP."
},
"hostIP": {
"type": "string",
"description": "Mask for IPs allowed for the default user.",
"default": "127.0.0.1/32"
}
}
},
"users": {
"type": "array",
"description": "Users to initialize in ClickHouse",
"items": {
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "Name for the user",
"pattern": "^[a-zA-Z0-9_]+$"
},
"hostIP": {
"oneOf": [
{
"type": "string",
"description": "Single IP mask allowed for this user."
},
{
"type": "array",
"description": "Multiple IP masks allowed for this user.",
"items": {
"type": "string"
}
}
],
"description": "Mask for IPs allowed for this user. Can be a string or array of strings.",
"default": "0.0.0.0/0"
},
"password_secret_name": {
"type": "string",
"description": "Name of a Kubernetes secret containing the plaintext password"
},
"password_sha256_hex": {
"type": "string",
"description": "SHA256 of the password (ignored if password_secret_name is passed)"
},
"profile": {
"type": "string",
"description": "Name of the profile to apply for this user."
},
"grants": {
"type": "array",
"description": "List of grants to provide for the user",
"items": {
"type": "string",
"examples": [
"GRANT SELECT ON default.*",
"GRANT SELECT, DELETE ON foo.bar"
]
}
},
"settings": {
"type": "object",
"description": "Per-user settings to apply directly under the user."
}
}
}
},
"profiles": {
"type": "object",
"description": "Named profiles to apply to users via users[].profile.",
"propertyNames": {
"pattern": "^[a-zA-Z0-9_]+$"
}
},
"settings": {
"type": "object",
"description": "Server-level settings for each ClickHouse replica."
},
"replicasCount": {
"type": "integer",
"description": "Number of ClickHouse replicas. If greater than 1, Keeper must be enabled or a Keeper host must be provided.",
"default": 1
},
"shardsCount": {
"type": "integer",
"description": "Number of shards.",
"default": 1
},
"zones": {
"type": "array",
"description": "Specify the zones for ClickHouse pods.",
"items": {
"type": "string"
}
},
"antiAffinity": {
"type": "boolean",
"description": "If enabled, prevents ClickHouse pods from running on the same node."
},
"antiAffinityScope": {
"type": "string",
"description": "Scope for anti-affinity policy when antiAffinity is enabled.",
"enum": [
"Shard",
"Replica",
"Cluster",
"ClickHouseInstallation",
"Namespace"
],
"default": "ClickHouseInstallation"
},
"keeper": {
"type": "object",
"properties": {
"host": {
"type": "string",
"description": "Keeper host, if specified."
},
"port": {
"type": "integer",
"description": "Override the default Keeper port.",
"default": 2181
}
}
},
"persistence": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable storage for ClickHouse."
},
"size": {
"type": "string",
"description": "Volume size for ClickHouse storage."
},
"accessMode": {
"type": "string",
"description": "Access mode for ClickHouse storage."
},
"storageClass": {
"type": "string",
"description": "Storage class for the persistent volume."
},
"logs": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable PVC for logs."
},
"size": {
"type": "string",
"description": "Volume size for logs."
},
"accessMode": {
"type": "string",
"description": "Access mode for logs storage."
}
}
}
}
},
"image": {
"type": "object",
"properties": {
"repository": {
"type": "string",
"description": "Repository for the ClickHouse image."
},
"pullPolicy": {
"type": "string",
"description": "Image pull policy."
},
"tag": {
"type": "string",
"description": "Tag for the ClickHouse image."
}
}
},
"service": {
"type": "object",
"properties": {
"type": {
"type": "string",
"description": "Service type, e.g., LoadBalancer or ClusterIP."
},
"serviceAnnotations": {
"type": "object",
"description": "Annotations for ClickHouse service."
},
"serviceLabels": {
"type": "object",
"description": "Labels for ClickHouse service."
}
}
},
"lbService": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable LoadBalancer service for ClickHouse."
},
"loadBalancerSourceRanges": {
"type": "array",
"description": "Restricts traffic to specified client IPs.",
"items": {
"type": "string"
}
},
"serviceAnnotations": {
"type": "object",
"description": "Annotations for LoadBalancer service."
},
"serviceLabels": {
"type": "object",
"description": "Labels for LoadBalancer service."
}
}
},
"imagePullSecrets": {
"type": "array",
"description": "Image pull secrets for ClickHouse pods.",
"items": {
"type": "object"
}
},
"podAnnotations": {
"type": "object",
"description": "Annotations for ClickHouse pods."
},
"podLabels": {
"type": "object",
"description": "Labels for ClickHouse pods."
},
"podSecurityContext": {
"type": "object",
"description": "Pod security context for ClickHouse pods."
},
"securityContext": {
"type": "object",
"description": "Security context for ClickHouse containers."
},
"nodeSelector": {
"type": "object",
"description": "Node selector for ClickHouse pods."
},
"tolerations": {
"type": "array",
"description": "Tolerations for ClickHouse pods.",
"items": {
"type": "object"
}
},
"affinity": {
"type": "object",
"description": "Affinity for ClickHouse pods."
},
"topologySpreadConstraints": {
"type": "array",
"description": "Topology spread constraints for ClickHouse pods.",
"items": {
"type": "object"
}
},
"extraConfig": {
"type": "string",
"description": "Miscellaneous config for ClickHouse in XML format."
},
"extraUsers": {
"type": "string",
"description": "Miscellaneous users config for ClickHouse in XML format."
},
"extraContainers": {
"type": "array",
"description": "Extra containers for Clickhouse pod.",
"items": {
"type": "object"
}
},
"extraVolumes": {
"type": "array",
"description": "Extra volumes for Clickhouse pod.",
"items": {
"type": "object"
}
},
"resources": {
"type": "object",
"description": "Resource requests/limits for ClickHouse containers."
},
"initScripts": {
"type": "object",
"description": "Configuration for init scripts via ConfigMap.",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable init scripts feature.",
"default": false
},
"configMapName": {
"type": "string",
"description": "Name of an existing ConfigMap containing init scripts to be mounted at /docker-entrypoint-initdb.d/."
},
"alwaysRun": {
"type": "boolean",
"description": "Set to true to always run init scripts on container startup.",
"default": true
}
}
}
}
},
"keeper": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable Keeper for ClickHouse replication."
},
"replicaCount": {
"type": "integer",
"description": "Number of Keeper replicas. Must be an odd number.",
"default": 3
},
"image": {
"type": "string",
"description": "Image repository for Keeper."
},
"tag": {
"type": "string",
"description": "Image tag for Keeper."
},
"settings": {
"type": "object",
"description": "Configuration settings for ClickHouse Keeper."
},
"localStorage": {
"type": "object",
"properties": {
"size": {
"type": "string",
"description": "Volume size for Keeper storage."
},
"storageClass": {
"type": "string",
"description": "Storage class for Keeper persistent volume."
}
}
},
"nodeSelector": {
"type": "object",
"description": "Node selector for Keeper pods."
},
"tolerations": {
"type": "array",
"description": "Tolerations for Keeper pods.",
"items": {
"type": "object"
}
},
"podAnnotations": {
"type": "object",
"description": "Annotations for Keeper pods."
},
"podSecurityContext": {
"type": "object",
"description": "Pod security context for Keeper pods."
},
"securityContext": {
"type": "object",
"description": "Security context for Keeper containers."
},
"volumeClaimAnnotations": {
"type": "object",
"description": "Annotations for Keeper volume claims."
},
"zoneSpread": {
"type": "boolean",
"description": "Enable topology spread constraints over zone for Keeper."
},
"metricsPort": {
"type": "string",
"description": "Port for Keeper metrics."
},
"resources": {
"type": "object",
"properties": {
"cpuRequestsMs": {
"type": "number",
"description": "CPU requests in millicores for Keeper."
},
"memoryRequestsMiB": {
"type": "string",
"description": "Memory requests for Keeper."
},
"cpuLimitsMs": {
"type": "number",
"description": "CPU limits in millicores for Keeper."
},
"memoryLimitsMiB": {
"type": "string",
"description": "Memory limits for Keeper."
}
}
}
}
},
"operator": {
"type": "object",
"properties": {
"enabled": {
"type": "boolean",
"description": "Enable Altinity Operator for ClickHouse."
}
}
}
}
}