Skip to content
This repository was archived by the owner on Mar 2, 2026. It is now read-only.

Commit 11713d6

Browse files
akalitenyadhable
andauthored
fix default boolean values (ClickHouse#160)
Co-authored-by: Dan Hable <418679+dhable@users.noreply.github.com>
1 parent 5913a72 commit 11713d6

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

.changeset/hip-hotels-like.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"helm-charts": patch
3+
---
4+
5+
fix default values for USAGE_STATS_ENABLED and RUN_SCHEDULED_TASKS_EXTERNALLY

charts/clickstack/templates/configmaps/app-configmap.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ data:
1414
MINER_API_URL: "http://{{ include "clickstack.fullname" . }}-miner:5123"
1515
MONGO_URI: "{{ tpl .Values.hyperdx.mongoUri . }}"
1616
OTEL_SERVICE_NAME: "hdx-oss-api"
17-
USAGE_STATS_ENABLED: "{{ .Values.hyperdx.usageStatsEnabled | default true }}"
18-
RUN_SCHEDULED_TASKS_EXTERNALLY: "{{ .Values.tasks.enabled | default false }}"
17+
USAGE_STATS_ENABLED: "{{ .Values.hyperdx.usageStatsEnabled }}"
18+
RUN_SCHEDULED_TASKS_EXTERNALLY: "{{ .Values.tasks.enabled }}"
1919
OPAMP_PORT: "{{ .Values.hyperdx.opampPort }}"
2020
OTEL_EXPORTER_OTLP_ENDPOINT: "{{ tpl .Values.hyperdx.otelExporterEndpoint . }}"

charts/hdx-oss-v2/templates/configmaps/app-configmap.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ data:
1414
MINER_API_URL: "http://{{ include "hdx-oss.fullname" . }}-miner:5123"
1515
MONGO_URI: "{{ tpl .Values.hyperdx.mongoUri . }}"
1616
OTEL_SERVICE_NAME: "hdx-oss-api"
17-
USAGE_STATS_ENABLED: "{{ .Values.hyperdx.usageStatsEnabled | default true }}"
18-
RUN_SCHEDULED_TASKS_EXTERNALLY: "{{ .Values.tasks.enabled | default false }}"
17+
USAGE_STATS_ENABLED: "{{ .Values.hyperdx.usageStatsEnabled }}"
18+
RUN_SCHEDULED_TASKS_EXTERNALLY: "{{ .Values.tasks.enabled }}"
1919
OPAMP_PORT: "{{ .Values.hyperdx.opampPort }}"
2020
OTEL_EXPORTER_OTLP_ENDPOINT: "{{ tpl .Values.hyperdx.otelExporterEndpoint . }}"

0 commit comments

Comments
 (0)