We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2e10dee commit 973b937Copy full SHA for 973b937
charts/sentry/templates/snuba/_helper-snuba.tpl
@@ -76,7 +76,15 @@ settings.py: |
76
The default clickhouse installation runs in distributed mode, while the external
77
clickhouse configured can be configured any way you choose
78
*/}}
79
- "single_node": False
+ {{- if and .Values.externalClickhouse.singleNode (not .Values.clickhouse.enabled) }}
80
+ "single_node": True,
81
+ {{- else }}
82
+ "single_node": False,
83
+ {{- end }}
84
+ {{- if or .Values.clickhouse.enabled (not .Values.externalClickhouse.singleNode) }}
85
+ "cluster_name": {{ include "sentry.clickhouse.cluster.name" . | quote }},
86
+ "distributed_cluster_name": {{ include "sentry.clickhouse.cluster.name" . | quote }},
87
88
},
89
]
90
0 commit comments