diff --git a/charts/nebulous-exn-middleware/Chart.yaml b/charts/nebulous-exn-middleware/Chart.yaml index ffd2c99..65924e1 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.3 +version: 0.1.4 # 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 ba62ac4..69a2057 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" | quote }} + value: {{ .Values.env.SAL_USER | default "nebulous" }} - name: 'SAL_PASSWORD' - value: {{ .Values.env.SAL_PASSWORD | default "nebulous" | quote }} + value: {{ .Values.env.SAL_PASSWORD | default "nebulous" }} {{- with .Values.nodeSelector }} nodeSelector: {{- toYaml . | nindent 8 }} diff --git a/charts/nebulous-exn-middleware/values.yaml b/charts/nebulous-exn-middleware/values.yaml index 61ba24a..a1b66ce 100644 --- a/charts/nebulous-exn-middleware/values.yaml +++ b/charts/nebulous-exn-middleware/values.yaml @@ -82,5 +82,5 @@ tolerations: [] affinity: {} env: - SAL_USER: "" - SAL_PASSWORD: "" + SAL_USER: nebulous + SAL_PASSWORD: nebulous