Closed bbusioc closed 1 month ago
I fixed it locally on my side by updating like this the env part in the deployment template:
env:
- name: GROUP_NAME
value: {{ .Values.groupName | quote }}
{{- with .Values.http_proxy }}
- name: HTTP_PROXY
value: {{ . }}
{{- end }}
{{- with .Values.https_proxy }}
- name: HTTPS_PROXY
value: {{ . }}
{{- end }}
{{- with .Values.no_proxy }}
- name: NO_PROXY
value: {{ . }}
{{- end }}
But I think it would be great if this or a better solution could be integrated in your repo.
Thanks, Bogdan
Hello @bbusioc, thanks - I thought the chart supported arbitrary env vars, but it looks like it does not. I'll add that support soon.
@zachomedia : when will it be possible for you to add env variables ?
Resolved via #54
Hello,
Is there a was to set the http/s proxy via an environment variable by using the helm chart?
For some reason, which I can't really understand to reach the power DNS API I have to go through a proxy.
I manually edited the deployment, added the required HTTP_PROXY, HTTPS_PROXY and NO_PROXY configurations and it worked.
However, I can't find a way to set environment variables via the helm chart.
Thanks, Bogdan