From 9fc1e73fd379628b8064bde789612e85a9619cb5 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Tue, 19 Nov 2024 13:49:32 +0000 Subject: [PATCH] Add additional Clickhouse service ports for TCP, MySQL, and PostgreSQL --- HelmChart/Public/oneuptime/values.yaml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/HelmChart/Public/oneuptime/values.yaml b/HelmChart/Public/oneuptime/values.yaml index 21f341abcb..82a20379ee 100644 --- a/HelmChart/Public/oneuptime/values.yaml +++ b/HelmChart/Public/oneuptime/values.yaml @@ -72,6 +72,9 @@ clickhouse: service: ports: http: "8123" + tcp: "9000" + mysql: "9004" + postgresql: "9005" shards: 1 replicaCount: 1 terminationGracePeriodSeconds: 0 # We do this because we do not want to wait for the pod to terminate in case of node failure. https://medium.com/tailwinds-navigator/kubernetes-tip-how-statefulsets-behave-differently-than-deployments-when-node-fails-d29e36bca7d5 @@ -84,6 +87,12 @@ clickhouse: initdbScripts: db-init.sql: | CREATE DATABASE oneuptime; + # extraOverrides: | + # + # + # + # + redis: enabled: true