Browse Source

Using also uppercase proxy env variables (#4910)

pull/4946/head
Konrad Kurdej 5 years ago
committed by Kubernetes Prow Robot
parent
commit
d90a5f291b
1 changed files with 3 additions and 0 deletions
  1. 3
      roles/kubespray-defaults/defaults/main.yaml

3
roles/kubespray-defaults/defaults/main.yaml

@ -411,8 +411,11 @@ no_proxy: >-
proxy_env:
http_proxy: "{{ http_proxy| default ('') }}"
HTTP_PROXY: "{{ http_proxy| default ('') }}"
https_proxy: "{{ https_proxy| default ('') }}"
HTTPS_PROXY: "{{ https_proxy| default ('') }}"
no_proxy: "{{ no_proxy| default ('') }}"
NO_PROXY: "{{ no_proxy| default ('') }}"
ssl_ca_dirs: >-
[

Loading…
Cancel
Save