From db6ca9dcf3a9b87cfb982ec531141f5d12ad340d Mon Sep 17 00:00:00 2001 From: nicktrn <55853254+nicktrn@users.noreply.github.com> Date: Mon, 23 Jun 2025 23:09:05 +0100 Subject: [PATCH] add clickhouse vars as extraEnv examples --- hosting/k8s/helm/values-production-example.yaml | 13 +++++++++++++ hosting/k8s/helm/values.yaml | 11 +++++++++++ 2 files changed, 24 insertions(+) diff --git a/hosting/k8s/helm/values-production-example.yaml b/hosting/k8s/helm/values-production-example.yaml index f286c4220..2236cf5ae 100644 --- a/hosting/k8s/helm/values-production-example.yaml +++ b/hosting/k8s/helm/values-production-example.yaml @@ -46,6 +46,19 @@ webapp: requests: cpu: 1000m memory: 2Gi + # ClickHouse configuration (experimental) + extraEnv: + [] + # - name: RUN_REPLICATION_CLICKHOUSE_URL + # value: "http://clickhouse:9000" + # - name: RUN_REPLICATION_ENABLED + # value: "1" + # - name: RUN_REPLICATION_LOG_LEVEL + # value: "info" + # - name: CLICKHOUSE_URL + # value: "http://clickhouse:9000" + # - name: CLICKHOUSE_LOG_LEVEL + # value: "info" # Production PostgreSQL (or use external) postgres: diff --git a/hosting/k8s/helm/values.yaml b/hosting/k8s/helm/values.yaml index d530422dc..64597a636 100644 --- a/hosting/k8s/helm/values.yaml +++ b/hosting/k8s/helm/values.yaml @@ -95,6 +95,17 @@ webapp: # secretKeyRef: # name: my-secret # key: secret-key + # ClickHouse configuration (experimental) + # - name: RUN_REPLICATION_CLICKHOUSE_URL + # value: "http://clickhouse:9000" + # - name: RUN_REPLICATION_ENABLED + # value: "0" + # - name: RUN_REPLICATION_LOG_LEVEL + # value: "info" + # - name: CLICKHOUSE_URL + # value: "http://clickhouse:9000" + # - name: CLICKHOUSE_LOG_LEVEL + # value: "info" # ServiceMonitor for Prometheus monitoring serviceMonitor: