Skip to content

Commit

Permalink
fix(signoz): add --cluster-name argument to query-service and schema-…
Browse files Browse the repository at this point in the history
…migrator
  • Loading branch information
yankeguo committed Jan 11, 2025
1 parent e833332 commit a1c8778
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 1 deletion.
2 changes: 1 addition & 1 deletion charts/signoz/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: signoz
version: 0.65.1
version: 0.65.2
appVersion: "0.67.1"
description: SigNoz Observability Platform Helm Chart
type: application
Expand Down
2 changes: 2 additions & 0 deletions charts/signoz/templates/query-service/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,8 @@ spec:
image: {{ template "queryService.image" . }}
imagePullPolicy: {{ .Values.queryService.image.pullPolicy }}
args:
- --cluster-name
- "$(CLICKHOUSE_CLUSTER)"
- --config=/root/config/prometheus.yml
{{- if .Values.queryService.cache.enabled }}
- --experimental.cache-config
Expand Down
2 changes: 2 additions & 0 deletions charts/signoz/templates/schema-migrator/migrations-async.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ spec:
{{- include "snippet.clickhouse-credentials" . | nindent 12 }}
args:
- async
- "--cluster-name"
- "$(CLICKHOUSE_CLUSTER)"
- "--dsn"
- "tcp://$(CLICKHOUSE_USER):$(CLICKHOUSE_PASSWORD)@{{ include "schemamigrator.url" . }}"
{{- if .Values.schemaMigrator.enableReplication }}
Expand Down
2 changes: 2 additions & 0 deletions charts/signoz/templates/schema-migrator/migrations-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ spec:
{{- include "snippet.clickhouse-credentials" . | nindent 12 }}
args:
- sync
- "--cluster-name"
- "$(CLICKHOUSE_CLUSTER)"
- "--dsn"
- "tcp://$(CLICKHOUSE_USER):$(CLICKHOUSE_PASSWORD)@{{ include "schemamigrator.url" . }}"
{{- if .Values.schemaMigrator.enableReplication }}
Expand Down

0 comments on commit a1c8778

Please sign in to comment.