From 4f8081387abe448332a507dae7b00bd35808f095 Mon Sep 17 00:00:00 2001 From: day0hero Date: Fri, 1 May 2026 11:43:42 +0100 Subject: [PATCH] fix(frontend): quote ENABLE_SINGLE_SHARED_SESSION env value Kubernetes requires env.value to be a string; unquoted Helm output for boolean values produced YAML booleans and broke Deployment apply on OpenShift. Chart 0.0.8. --- Chart.yaml | 2 +- templates/frontend.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Chart.yaml b/Chart.yaml index 65f5eb9..57754a4 100644 --- a/Chart.yaml +++ b/Chart.yaml @@ -3,7 +3,7 @@ description: Helm Chart to deploy Google's Boutique App keywords: - pattern name: boutique -version: 0.0.7 +version: 0.0.8 home: https://github.com/validatedpatterns/boutique-chart maintainers: - name: Validated Patterns Team diff --git a/templates/frontend.yaml b/templates/frontend.yaml index 0da09c7..cc05bc6 100644 --- a/templates/frontend.yaml +++ b/templates/frontend.yaml @@ -67,7 +67,7 @@ spec: - name: ENABLE_PROFILER value: "0" - name: ENABLE_SINGLE_SHARED_SESSION - value: {{ .Values.frontend.enableSingleSharedSession }} + value: {{ .Values.frontend.enableSingleSharedSession | quote }} livenessProbe: httpGet: path: /_healthz