Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/bump-clickhouse-operator-v0.0.6.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"helm-charts": patch
---

chore(deps): bump clickhouse-operator-helm to v0.0.6
6 changes: 3 additions & 3 deletions charts/clickstack-operators/Chart.lock
Original file line number Diff line number Diff line change
Expand Up @@ -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"
2 changes: 1 addition & 1 deletion charts/clickstack-operators/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 3 additions & 3 deletions charts/clickstack-operators/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
4 changes: 2 additions & 2 deletions integration-tests/full-stack/assert.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
Loading