From 96961298e29fc5a92738007357106815140d8736 Mon Sep 17 00:00:00 2001 From: jmarchel7bulls Date: Tue, 23 Jul 2024 13:35:39 +0200 Subject: [PATCH] update values in exn --- charts/nebulous-exn-middleware/Chart.yaml | 2 +- charts/nebulous-exn-middleware/templates/deployment.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/charts/nebulous-exn-middleware/Chart.yaml b/charts/nebulous-exn-middleware/Chart.yaml index 65924e1..6dbbeeb 100644 --- a/charts/nebulous-exn-middleware/Chart.yaml +++ b/charts/nebulous-exn-middleware/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/charts/nebulous-exn-middleware/templates/deployment.yaml b/charts/nebulous-exn-middleware/templates/deployment.yaml index 69a2057..ba62ac4 100644 --- a/charts/nebulous-exn-middleware/templates/deployment.yaml +++ b/charts/nebulous-exn-middleware/templates/deployment.yaml @@ -49,9 +49,9 @@ spec: - name: 'ACTIVEMQ_PORT' value: {{ .Values.ACTIVEMQ_PORT | default "5672" | quote }} - name: 'SAL_USER' - value: {{ .Values.env.SAL_USER | default "nebulous" }} + value: {{ .Values.env.SAL_USER | default "nebulous" | quote }} - name: 'SAL_PASSWORD' - value: {{ .Values.env.SAL_PASSWORD | default "nebulous" }} + value: {{ .Values.env.SAL_PASSWORD | default "nebulous" | quote }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }}