diff --git a/apps/public/content/docs/self-hosting/changelog.mdx b/apps/public/content/docs/self-hosting/changelog.mdx
index e8b7d074..3ef3e3bd 100644
--- a/apps/public/content/docs/self-hosting/changelog.mdx
+++ b/apps/public/content/docs/self-hosting/changelog.mdx
@@ -20,6 +20,30 @@ If you upgrading from a previous version, you'll need to edit your `.env` file i
- `RESEND_API_KEY` - If set, we'll use Resend to send e-mails.
- `EMAIL_SENDER` - The e-mail address that will be used to send e-mails.
+### Removed Clickhouse Keeper
+
+In 0.0.6 we introduced a cluster mode for Clickhouse. This was a misstake and we have removed it.
+
+Remove op-zk from services and volumes
+
+```
+services:
+ op-zk:
+ image: clickhouse/clickhouse-server:24.3.2-alpine
+ volumes:
+ - op-zk-data:/var/lib/clickhouse
+ - ./clickhouse/clickhouse-keeper-config.xml:/etc/clickhouse-server/config.xml
+ command: [ 'clickhouse-keeper', '--config-file', '/etc/clickhouse-server/config.xml' ]
+ restart: always
+ ulimits:
+ nofile:
+ soft: 262144
+ hard: 262144
+volumes:
+ op-zk-data:
+ driver: local
+```
+
## 0.0.6
Removed Clerk.com and added self-hosted authentication.
\ No newline at end of file
diff --git a/self-hosting/clickhouse/clickhouse-config.xml b/self-hosting/clickhouse/clickhouse-config.xml
index d4bf45e9..1277b825 100644
--- a/self-hosting/clickhouse/clickhouse-config.xml
+++ b/self-hosting/clickhouse/clickhouse-config.xml
@@ -19,4 +19,11 @@
0.0.0.0
0.0.0.0
op-ch
+
+
+
+ 1
+ replica1
+ openpanel_cluster
+
\ No newline at end of file