We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 06bbcfa commit d0e1ee0Copy full SHA for d0e1ee0
charts/gitops-runtime/templates/_helpers.tpl
@@ -513,13 +513,13 @@ Print proxy environment variables
513
*/}}
514
{{- define "codefresh-gitops-runtime.get-proxy-env-vars" -}}
515
{{- if .Values.global.httpProxy }}
516
-HTTP_PROXY: {{ .Values.global.httpProxy }}
+HTTP_PROXY: {{ .Values.global.httpProxy | quote }}
517
{{- end }}
518
{{- if .Values.global.httpsProxy }}
519
-HTTPS_PROXY: {{ .Values.global.httpsProxy }}
+HTTPS_PROXY: {{ .Values.global.httpsProxy | quote }}
520
521
{{- if .Values.global.noProxy }}
522
-NO_PROXY: {{ .Values.global.noProxy }}
+NO_PROXY: {{ .Values.global.noProxy | quote }}
523
524
{{- end -}}
525
0 commit comments