Skip to content

Commit

Permalink
Add additional Clickhouse service ports for TCP, MySQL, and PostgreSQL
Browse files Browse the repository at this point in the history
  • Loading branch information
simlarsen committed Nov 19, 2024
1 parent 64e713f commit 9fc1e73
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions HelmChart/Public/oneuptime/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -84,6 +87,12 @@ clickhouse:
initdbScripts:
db-init.sql: |
CREATE DATABASE oneuptime;
# extraOverrides: |
# <clickhouse>
# <mysql_port></mysql_port>
# <postgresql_port></postgresql_port>
# </clickhouse>


redis:
enabled: true
Expand Down

0 comments on commit 9fc1e73

Please sign in to comment.