diff --git a/charts/vmware-rest-proxy/Chart.yaml b/charts/vmware-rest-proxy/Chart.yaml index 66de621..80d2640 100644 --- a/charts/vmware-rest-proxy/Chart.yaml +++ b/charts/vmware-rest-proxy/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.1 +version: 0.1.2 # 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/vmware-rest-proxy/templates/deployment.yaml b/charts/vmware-rest-proxy/templates/deployment.yaml index 0ee9fde..c29ae07 100644 --- a/charts/vmware-rest-proxy/templates/deployment.yaml +++ b/charts/vmware-rest-proxy/templates/deployment.yaml @@ -47,11 +47,11 @@ spec: port: http env: - name: BASE_URL - value: {{ .Values.config.baseUrl }} + value: "{{ .Values.config.baseUrl }}" - name: LOG_LEVEL - value: {{ .Values.config.logLevel }} + value: "{{ .Values.config.logLevel }}" - name: TLS_INSECURE_SKIP_VERIFY - value: {{ .Values.config.tlsSkipVerify }} + value: "{{ .Values.config.tlsSkipVerify }}" resources: {{- toYaml .Values.resources | nindent 12 }} {{- with .Values.nodeSelector }}