File tree 3 files changed +10
-0
lines changed
3 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 18
18
{ {- else -} }
19
19
- name: CLICKHOUSE_HOST
20
20
value: { { required " externalClickhouse.host is required if not clickhouse.enabled" .Values.externalClickhouse.host | quote } }
21
+ - name: CLICKHOUSE_PORT
22
+ value: { { .Values.externalClickhouse.port | quote } }
21
23
- name: CLICKHOUSE_CLUSTER
22
24
value: { { required " externalClickhouse.cluster is required if not clickhouse.enabled" .Values.externalClickhouse.cluster | quote } }
23
25
- name: CLICKHOUSE_DATABASE
Original file line number Diff line number Diff line change @@ -34,6 +34,8 @@ should render with external clickhouse:
34
34
1 : |
35
35
- name : CLICKHOUSE_HOST
36
36
value : foo .bar .net
37
+ - name : CLICKHOUSE_PORT
38
+ value : " 9000"
37
39
- name : CLICKHOUSE_CLUSTER
38
40
value : somecluster
39
41
- name : CLICKHOUSE_DATABASE
@@ -50,6 +52,8 @@ should render with external clickhouse with more custom settings:
50
52
1 : |
51
53
- name : CLICKHOUSE_HOST
52
54
value : foo .bar .net
55
+ - name : CLICKHOUSE_PORT
56
+ value : " 9000"
53
57
- name : CLICKHOUSE_CLUSTER
54
58
value : customCluster
55
59
- name : CLICKHOUSE_DATABASE
@@ -66,6 +70,8 @@ should render with external clickhouse with secrets:
66
70
1 : |
67
71
- name : CLICKHOUSE_HOST
68
72
value : foo .bar .net
73
+ - name : CLICKHOUSE_PORT
74
+ value : " 9000"
69
75
- name : CLICKHOUSE_CLUSTER
70
76
value : somecluster
71
77
- name : CLICKHOUSE_DATABASE
Original file line number Diff line number Diff line change @@ -737,6 +737,8 @@ clickhouse:
737
737
externalClickhouse :
738
738
# -- Host of the external cluster. This is required when clickhouse.enabled is false
739
739
host :
740
+ # -- Port of the external cluster.
741
+ port : 9000
740
742
# -- Name of the external cluster to run DDL queries on. This is required when clickhouse.enabled is false
741
743
cluster :
742
744
# -- Database name for the external cluster
You can’t perform that action at this time.
0 commit comments