From 7961c6e18c65cc3ccfcb74524bba5f90937a4ee9 Mon Sep 17 00:00:00 2001 From: hsiegeln <37154749+hsiegeln@users.noreply.github.com> Date: Wed, 15 Apr 2026 23:01:46 +0200 Subject: [PATCH] fix: expose ClickHouse HTTP port via NodePort for remote access Add cameleer-clickhouse-external Service (NodePort 30123) matching the pattern used by cameleer-postgres-external (NodePort 30432). Co-Authored-By: Claude Opus 4.6 (1M context) --- deploy/cameleer-clickhouse.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/deploy/cameleer-clickhouse.yaml b/deploy/cameleer-clickhouse.yaml index 23709083..d0cbd2a3 100644 --- a/deploy/cameleer-clickhouse.yaml +++ b/deploy/cameleer-clickhouse.yaml @@ -109,6 +109,21 @@ spec: name: native --- apiVersion: v1 +kind: Service +metadata: + name: cameleer-clickhouse-external + namespace: cameleer +spec: + type: NodePort + selector: + app: cameleer-clickhouse + ports: + - port: 8123 + targetPort: 8123 + nodePort: 30123 + name: http +--- +apiVersion: v1 kind: ConfigMap metadata: name: cameleer-clickhouse-config