From abe868d95ce5ce7c4cdfc99742b6b098cb84ad75 Mon Sep 17 00:00:00 2001 From: Tim Campbell Date: Tue, 1 Oct 2024 11:33:30 +0200 Subject: [PATCH] Minor fix for otel separator value (#154) --- templates/deployment-sidekiq.yaml | 2 +- templates/deployment-web.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/templates/deployment-sidekiq.yaml b/templates/deployment-sidekiq.yaml index f59cade..1b3042d 100644 --- a/templates/deployment-sidekiq.yaml +++ b/templates/deployment-sidekiq.yaml @@ -204,7 +204,7 @@ spec: - name: OTEL_SERVICE_NAME_PREFIX value: {{ coalesce $context.Values.mastodon.sidekiq.otel.namePrefix $context.Values.mastodon.otel.namePrefix }} - name: OTEL_SERVICE_NAME_SEPARATOR - value: {{ coalesce $context.Values.mastodon.sidekiq.otel.nameSeparator $context.Values.mastodon.otel.nameSeparator }} + value: "{{ coalesce $context.Values.mastodon.sidekiq.otel.nameSeparator $context.Values.mastodon.otel.nameSeparator }}" {{- end }} volumeMounts: {{- if (not $context.Values.mastodon.s3.enabled) }} diff --git a/templates/deployment-web.yaml b/templates/deployment-web.yaml index ae8db55..d787c3f 100644 --- a/templates/deployment-web.yaml +++ b/templates/deployment-web.yaml @@ -194,7 +194,7 @@ spec: - name: OTEL_SERVICE_NAME_PREFIX value: {{ coalesce .Values.mastodon.web.otel.namePrefix .Values.mastodon.otel.namePrefix }} - name: OTEL_SERVICE_NAME_SEPARATOR - value: {{ coalesce .Values.mastodon.web.otel.nameSeparator .Values.mastodon.otel.nameSeparator }} + value: "{{ coalesce .Values.mastodon.web.otel.nameSeparator .Values.mastodon.otel.nameSeparator }}" {{- end }} volumeMounts: {{- if (not .Values.mastodon.s3.enabled) }}