Browse Source
Modify the populate no_proxy task to use a combine rather than relying on the hash_behaviour setting to be set to merge rather than replace (#6112)
pull/6208/head
Cody Seavey
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
4 additions and
3 deletions
-
roles/kubespray-defaults/tasks/no_proxy.yml
|
@ -26,6 +26,7 @@ |
|
|
- name: Populates no_proxy to all hosts |
|
|
- name: Populates no_proxy to all hosts |
|
|
set_fact: |
|
|
set_fact: |
|
|
no_proxy: "{{ hostvars.localhost.no_proxy_prepare }}" |
|
|
no_proxy: "{{ hostvars.localhost.no_proxy_prepare }}" |
|
|
proxy_env: |
|
|
|
|
|
no_proxy: "{{ hostvars.localhost.no_proxy_prepare }}" |
|
|
|
|
|
NO_PROXY: "{{ hostvars.localhost.no_proxy_prepare }}" |
|
|
|
|
|
|
|
|
proxy_env: "{{ proxy_env | combine({ |
|
|
|
|
|
'no_proxy': hostvars.localhost.no_proxy_prepare, |
|
|
|
|
|
'NO_PROXY': hostvars.localhost.no_proxy_prepare |
|
|
|
|
|
}) }}" |