From 7fc192e466d3be1b445ac3265d71fd7a5ffb5756 Mon Sep 17 00:00:00 2001 From: Simon Larsen Date: Tue, 11 Jun 2024 16:24:55 +0100 Subject: [PATCH] refactor: Quote the value of ALLOWED_ACTIVE_MONITOR_COUNT_IN_FREE_PLAN in _helpers.tpl The value of ALLOWED_ACTIVE_MONITOR_COUNT_IN_FREE_PLAN in _helpers.tpl has been updated to be quoted using the | quote filter. This change ensures that the value is treated as a string, improving consistency and compatibility with other parts of the codebase. --- HelmChart/Public/oneuptime/templates/_helpers.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/HelmChart/Public/oneuptime/templates/_helpers.tpl b/HelmChart/Public/oneuptime/templates/_helpers.tpl index 43da9f3201..da123ec0c3 100644 --- a/HelmChart/Public/oneuptime/templates/_helpers.tpl +++ b/HelmChart/Public/oneuptime/templates/_helpers.tpl @@ -17,7 +17,7 @@ Usage: - name: STATUS_PAGE_CNAME_RECORD value: {{ $.Values.statusPage.cnameRecord }} - name: ALLOWED_ACTIVE_MONITOR_COUNT_IN_FREE_PLAN - value: {{ $.Values.billing.allowedActiveMonitorCountInFreePlan }} + value: {{ $.Values.billing.allowedActiveMonitorCountInFreePlan | quote }} - name: OTEL_COLLECTOR_HOST value: {{ $.Values.openTelemetryCollectorHost }} - name: LOG_LEVEL