You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: deploy/builder/templates-install-bundle/clickhouse-operator-install-yaml-template-01-section-crd-01-chi-chit.yaml
+74Lines changed: 74 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -497,6 +497,80 @@ spec:
497
497
minimum: 0
498
498
maximum: 100
499
499
description: "The maximum percentage of cluster shards that may be reconciled in parallel, 50 percent by default."
Copy file name to clipboardExpand all lines: deploy/builder/templates-install-bundle/clickhouse-operator-install-yaml-template-01-section-crd-02-chopconf.yaml
+24Lines changed: 24 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -240,6 +240,12 @@ spec:
240
240
Timeout used to limit metrics collection request. In seconds.
241
241
Upon reaching this timeout metrics collection is aborted and no more metrics are collected in this cycle.
242
242
All collected metrics are returned.
243
+
tablesRegexp:
244
+
type: string
245
+
description: |
246
+
Regexp to match tables in system database to fetch metrics from.
247
+
Multiple tables can be matched using regexp. Matched tables are merged using merge() table function.
248
+
Default is "^(metrics|custom_metrics)$".
243
249
template:
244
250
type: object
245
251
description: "Parameters which are used if you want to generate ClickHouseInstallationTemplate custom resources from files which are stored inside clickhouse-operator deployment"
@@ -318,6 +324,24 @@ spec:
318
324
1. abort - do nothing, just break the process and wait for admin.
319
325
2. rollback (default) - delete Pod and rollback StatefulSet to previous Generation. Pod would be recreated by StatefulSet based on rollback-ed configuration.
320
326
3. ignore - ignore error, pretend nothing happened and move on to the next StatefulSet.
327
+
recreate:
328
+
type: object
329
+
description: "Behavior during recreate StatefulSet"
330
+
properties:
331
+
onDataLoss:
332
+
type: string
333
+
description: |
334
+
What to do in case operator needs to recreate StatefulSet due to PVC data loss or missing volumes.
335
+
Possible options:
336
+
1. abort - abort the process, do nothing with the problematic StatefulSet.
337
+
2. recreate (default) - proceed and recreate StatefulSet.
338
+
onUpdateFailure:
339
+
type: string
340
+
description: |
341
+
What to do in case operator needs to recreate StatefulSet due to update failure or StatefulSet not ready.
342
+
Possible options:
343
+
1. abort - abort the process, do nothing with the problematic StatefulSet.
344
+
2. recreate (default) - proceed and recreate StatefulSet.
0 commit comments