Install using the manifest
kubectl apply -f https://github.com/ClickHouse/clickhouse-operator/releases/download/v0.0.5/clickhouse-operator.yaml
Install using helmchart
helm install clickhouse-operator oci://ghcr.io/clickhouse/clickhouse-operator-helm \
--version=0.0.5 \
--create-namespace \
-n clickhouse-operator-system
Changelog
🚀 Features
- Added metrics logs so the built-in dashboard displays proper values. Otherwise, it feels broken at cluster installation.
- PR: #167
- feat: support keeper on a different namespace
- PR: #173
- feat: add clickhouse-cluster helm chart
- PR: #183
- feat: correctly handle IPv4-only envs
- PR: #185
- feat(helm): Regenerate helm chart with latest kubebuilder
- PR: #159
- feat: drop all capabilities by default, remove restricted security settings in OpenShift installations
- PR: #184
🐛 Fixes
- fix: cache version probe result to prevent reconciliation deadlock
- PR: #175
- fix: respect user-provided container capabilities under PodSecurity restricted
- PR: #176
- fix: set Healthy/Ready to Unknown if pods are running, but the operator can't connect to the server
- PR: #186
- fix: requeue reconciliation after replica update
- PR: #189