ClickStack is an open-source observability stack combining ClickHouse, HyperDX, and OpenTelemetry for logs, metrics, and traces.
helm repo add clickstack https://clickhouse.github.io/ClickStack-helm-charts
helm repo update
# Step 1: Install operators and CRDs
helm install clickstack-operators clickstack/clickstack-operators
# Step 2: Install ClickStack (after operators are ready)
helm install my-clickstack clickstack/clickstackFor configuration, cloud deployment, ingress setup, and troubleshooting, see the official documentation.
clickstack/clickstack-operators- Installs the MongoDB and ClickHouse operator controllers and CRDs. Must be installed first.clickstack/clickstack- Installs HyperDX, OpenTelemetry Collector, and operator custom resources.
The clickstack chart supports deploying arbitrary Kubernetes objects (NetworkPolicy, HPA, ServiceAccount, PodMonitor, ALB Ingress, etc.) alongside the chart's own resources via the additionalManifests value. See the Additional Manifests Guide for values-file constraints and examples, including AWS ALB example values.
The clickstack-operators chart bundles:
- MongoDB Kubernetes Operator (MCK) - Manages MongoDB Community replica sets via a
MongoDBCommunitycustom resource. - ClickHouse Operator - Manages ClickHouse and Keeper clusters via
ClickHouseClusterandKeeperClustercustom resources.
The clickstack chart includes:
- OpenTelemetry Collector - Deploys the ClickStack OTEL collector image via the official OpenTelemetry Collector Helm chart.
Uninstall in reverse order:
helm uninstall my-clickstack # Remove app + CRs first
helm uninstall clickstack-operators # Remove operators + CRDsNote: PersistentVolumeClaims created by the MongoDB and ClickHouse operators are not removed by helm uninstall. This is by design to prevent accidental data loss. To clean up PVCs, refer to:
If you are upgrading from the inline-template chart (v1.x), see the Upgrade Guide for migration instructions.
- Documentation - Installation, configuration, guides
- Issues - Report bugs or request features