a790935d02
no_proxy is a pain to get right, and having proxy variables present causes issues (k8s components get proxy configuration after upgrade, see #7100) It's better to only configure what require proxy: - the runtime (containerd/docker/crio) - the package manager + apt_key - the download tasks Tested with the following clusters - 4 CentOS 8 nodes - 1 Ubuntu 20.04 node Signed-off-by: Etienne Champetier <champetier.etienne@gmail.com>
21 lines
441 B
YAML
21 lines
441 B
YAML
---
|
|
|
|
- name: Create binary destination folder
|
|
file:
|
|
mode: '0755'
|
|
state: directory
|
|
path: "{{ crun_bin_dir }}"
|
|
|
|
- name: Check if binary exists
|
|
stat:
|
|
path: "{{ crun_bin_dir }}/crun"
|
|
register: crun_stat
|
|
|
|
# TODO: use download_file.yml
|
|
- name: Download binary
|
|
get_url:
|
|
url: "{{ crun_release_url }}"
|
|
dest: "{{ crun_bin_dir }}/crun"
|
|
mode: '0755'
|
|
when: not crun_stat.stat.exists
|
|
environment: "{{ proxy_env }}"
|