From 0d4599066063a7ca559d23df8ce766361e978844 Mon Sep 17 00:00:00 2001 From: Sem Schilder Date: Tue, 25 Jun 2024 19:12:39 +0200 Subject: [PATCH] Fix: Properly quote variables --- charts/symfony-app/Chart.yaml | 4 ++-- charts/symfony-app/values.yaml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/charts/symfony-app/Chart.yaml b/charts/symfony-app/Chart.yaml index 2d8be75..21ccc77 100644 --- a/charts/symfony-app/Chart.yaml +++ b/charts/symfony-app/Chart.yaml @@ -2,7 +2,7 @@ apiVersion: v2 name: symfony-app description: A simple chart to deploy basic Symfony/PHP applications type: application -version: 0.5.2 +version: 0.5.3 appVersion: 'main' keywords: - php @@ -17,4 +17,4 @@ annotations: # Supported kind: added, changed, deprecated, removed, fixed and security artifacthub.io/changes: | - kind: fixed - description: "Fix deployment not using correct variable" + description: "Properly quote variables" diff --git a/charts/symfony-app/values.yaml b/charts/symfony-app/values.yaml index 294984e..c2042d8 100644 --- a/charts/symfony-app/values.yaml +++ b/charts/symfony-app/values.yaml @@ -27,8 +27,8 @@ release: ~ ## # Environment variables environment: | - APP_ENV: prod - APP_DEBUG: 0 + APP_ENV: "prod" + APP_DEBUG: "0" ## # Only https sources are supported