From 453b1e359613bb684429e0b40ec68d44eb3fbda9 Mon Sep 17 00:00:00 2001 From: Pervakov Grigorii Date: Wed, 27 May 2026 21:41:21 +0200 Subject: [PATCH] chore(deps): bump clickhouse-operator-helm version to v0.0.6 --- .changeset/bump-clickhouse-operator-v0.0.6.md | 5 +++++ charts/clickstack-operators/Chart.lock | 6 +++--- charts/clickstack-operators/Chart.yaml | 2 +- charts/clickstack-operators/values.yaml | 6 +++--- integration-tests/full-stack/assert.sh | 4 ++-- 5 files changed, 14 insertions(+), 9 deletions(-) create mode 100644 .changeset/bump-clickhouse-operator-v0.0.6.md diff --git a/.changeset/bump-clickhouse-operator-v0.0.6.md b/.changeset/bump-clickhouse-operator-v0.0.6.md new file mode 100644 index 0000000..228bf81 --- /dev/null +++ b/.changeset/bump-clickhouse-operator-v0.0.6.md @@ -0,0 +1,5 @@ +--- +"helm-charts": patch +--- + +chore(deps): bump clickhouse-operator-helm to v0.0.6 diff --git a/charts/clickstack-operators/Chart.lock b/charts/clickstack-operators/Chart.lock index 469e93c..8d12391 100644 --- a/charts/clickstack-operators/Chart.lock +++ b/charts/clickstack-operators/Chart.lock @@ -4,6 +4,6 @@ dependencies: version: 1.7.0 - name: clickhouse-operator-helm repository: oci://ghcr.io/clickhouse - version: 0.0.2 -digest: sha256:1daf572004da83b1836c8867f11198530652fee6905d4786a2d5eef87bc611cd -generated: "2026-03-04T16:52:51.068188-06:00" + version: 0.0.6 +digest: sha256:5afcb0d78e0ceecf1a18f3f7dfb52ee2627b7acea2621ffa411ee7bfb530adf7 +generated: "2026-06-19T17:41:30.214406+02:00" diff --git a/charts/clickstack-operators/Chart.yaml b/charts/clickstack-operators/Chart.yaml index 86cc5f1..0b6ceee 100644 --- a/charts/clickstack-operators/Chart.yaml +++ b/charts/clickstack-operators/Chart.yaml @@ -13,6 +13,6 @@ dependencies: repository: https://mongodb.github.io/helm-charts alias: mongodb-operator - name: clickhouse-operator-helm - version: "~0.0.2" + version: "~0.0.6" repository: oci://ghcr.io/clickhouse alias: clickhouse-operator diff --git a/charts/clickstack-operators/values.yaml b/charts/clickstack-operators/values.yaml index 85fd44f..701bfd5 100644 --- a/charts/clickstack-operators/values.yaml +++ b/charts/clickstack-operators/values.yaml @@ -9,8 +9,8 @@ mongodb-operator: # See https://clickhouse.com/docs/clickhouse-operator/overview for all options clickhouse-operator: webhook: - enable: false + enabled: false certManager: - enable: false + enabled: false crd: - enable: true + enabled: true diff --git a/integration-tests/full-stack/assert.sh b/integration-tests/full-stack/assert.sh index 2aaf481..579ea0f 100755 --- a/integration-tests/full-stack/assert.sh +++ b/integration-tests/full-stack/assert.sh @@ -12,7 +12,7 @@ echo "Waiting for services to initialize..." sleep 30 echo "Waiting for all pods to be ready..." -kubectl wait --for=condition=Ready pods --all --timeout=600s || true +kubectl wait --for=condition=Ready pods --all --field-selector=status.phase!=Succeeded --timeout=600s || true echo "Pod status:" kubectl get pods -o wide @@ -24,7 +24,7 @@ echo "Checking ClickHouseCluster CR..." kubectl get clickhousecluster -o wide || true echo "Waiting for all pods to be ready (final check)..." -kubectl wait --for=condition=Ready pods --all --timeout=600s +kubectl wait --for=condition=Ready pods --all --field-selector=status.phase!=Succeeded --timeout=600s echo "Final pod status:" kubectl get pods -o wide