Skip to content

Commit

Permalink
Fix quote issue on deployment v1 (#21)
Browse files Browse the repository at this point in the history
* fix quote issue on deployment v1

* update chart version
  • Loading branch information
bennsimon authored Jul 8, 2021
1 parent 5a398d6 commit 66fdbdb
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/opensrp-web/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ 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
# follow Semantic Versioning. They should reflect the version the application is using.
# It is recommended to use it with quotes.
appVersion: "v1.0.6"
appVersion: "v1.1.6"
2 changes: 1 addition & 1 deletion charts/opensrp-web/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ spec:
{{- $scope := . -}}
{{- range $key, $value := .Values.containerEnvironmentVariables }}
- name: {{ $key }}
value: {{ tpl $value $scope }}
value: {{ (tpl $value $scope) | quote }}
{{- end }}
ports:
- name: http
Expand Down

0 comments on commit 66fdbdb

Please sign in to comment.