From 3abb3e2ae507d605cc70955541f737086387c91f Mon Sep 17 00:00:00 2001 From: akalitenya Date: Wed, 17 Dec 2025 00:12:24 +0500 Subject: [PATCH] fix default boolean values --- charts/clickstack/templates/configmaps/app-configmap.yaml | 4 ++-- charts/hdx-oss-v2/templates/configmaps/app-configmap.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/clickstack/templates/configmaps/app-configmap.yaml b/charts/clickstack/templates/configmaps/app-configmap.yaml index ecc2d2a..f4b97dc 100644 --- a/charts/clickstack/templates/configmaps/app-configmap.yaml +++ b/charts/clickstack/templates/configmaps/app-configmap.yaml @@ -14,7 +14,7 @@ data: MINER_API_URL: "http://{{ include "clickstack.fullname" . }}-miner:5123" MONGO_URI: "{{ tpl .Values.hyperdx.mongoUri . }}" OTEL_SERVICE_NAME: "hdx-oss-api" - USAGE_STATS_ENABLED: "{{ .Values.hyperdx.usageStatsEnabled | default true }}" - RUN_SCHEDULED_TASKS_EXTERNALLY: "{{ .Values.tasks.enabled | default false }}" + USAGE_STATS_ENABLED: "{{ .Values.hyperdx.usageStatsEnabled }}" + RUN_SCHEDULED_TASKS_EXTERNALLY: "{{ .Values.tasks.enabled }}" OPAMP_PORT: "{{ .Values.hyperdx.opampPort }}" OTEL_EXPORTER_OTLP_ENDPOINT: "{{ tpl .Values.hyperdx.otelExporterEndpoint . }}" diff --git a/charts/hdx-oss-v2/templates/configmaps/app-configmap.yaml b/charts/hdx-oss-v2/templates/configmaps/app-configmap.yaml index 1581b70..7d8e362 100644 --- a/charts/hdx-oss-v2/templates/configmaps/app-configmap.yaml +++ b/charts/hdx-oss-v2/templates/configmaps/app-configmap.yaml @@ -14,7 +14,7 @@ data: MINER_API_URL: "http://{{ include "hdx-oss.fullname" . }}-miner:5123" MONGO_URI: "{{ tpl .Values.hyperdx.mongoUri . }}" OTEL_SERVICE_NAME: "hdx-oss-api" - USAGE_STATS_ENABLED: "{{ .Values.hyperdx.usageStatsEnabled | default true }}" - RUN_SCHEDULED_TASKS_EXTERNALLY: "{{ .Values.tasks.enabled | default false }}" + USAGE_STATS_ENABLED: "{{ .Values.hyperdx.usageStatsEnabled }}" + RUN_SCHEDULED_TASKS_EXTERNALLY: "{{ .Values.tasks.enabled }}" OPAMP_PORT: "{{ .Values.hyperdx.opampPort }}" OTEL_EXPORTER_OTLP_ENDPOINT: "{{ tpl .Values.hyperdx.otelExporterEndpoint . }}"