From dfb55b565f49a950ae488a0d959e1be119f5af63 Mon Sep 17 00:00:00 2001 From: Krzysztof Szostak Date: Fri, 19 May 2023 13:28:21 +0200 Subject: [PATCH] fix: double quote variable --- helm/Chart.yaml | 2 +- helm/templates/deployment.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/helm/Chart.yaml b/helm/Chart.yaml index 46dc2cc..b91f0ad 100644 --- a/helm/Chart.yaml +++ b/helm/Chart.yaml @@ -15,7 +15,7 @@ type: application # This is the chart version. This version number should be incremented each time you make changes # to the chart and its templates, including the app version. # Versions are expected to follow Semantic Versioning (https://semver.org/) -version: 0.1.4 +version: 0.1.5 # This is the version number of the application being deployed. This version number should be # incremented each time you make changes to the application. Versions are not expected to diff --git a/helm/templates/deployment.yaml b/helm/templates/deployment.yaml index ccfb369..c305391 100644 --- a/helm/templates/deployment.yaml +++ b/helm/templates/deployment.yaml @@ -36,7 +36,7 @@ spec: imagePullPolicy: {{ .Values.image.pullPolicy }} env: - name: "SHOULD_CRASH" - value: {{.Values.shouldCrash}} + value: "{{.Values.shouldCrash}}" ports: - name: http containerPort: {{ .Values.service.port }}