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
13 changes: 13 additions & 0 deletions .changeset/bump-clickhouse-operator-helm.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
---
"helm-charts": minor
---

fix(clickstack-operators): bump clickhouse-operator-helm dependency to `>=0.0.5, <0.1.0`

The previous `~0.0.2` constraint resolved narrowly to v0.0.2 only (Masterminds semver behavior for pre-1.0 versions), pinning the operator to an old release. v0.0.5 ships:

- New CRD schema with the `spec.podDisruptionBudget` field on both `ClickHouseCluster` and `KeeperCluster` (lets users override the auto-generated PDB).
- Smart default for `ClickHouseCluster` with `replicas <= 1`: `maxUnavailable=1` instead of `minAvailable=1`, so single-replica deployments no longer deadlock on node drains.
- RBAC additions (e.g. `Jobs` informer) required by the v0.0.5 controller manager.

Users on `clickstack-operators` v1.0.0 cannot benefit from any of these because the chart resolved the dependency to v0.0.2; the v0.0.5 binary cannot run against v0.0.2's RBAC or CRD schema.
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.5, <0.1.0"
repository: oci://ghcr.io/clickhouse
alias: clickhouse-operator