Update to 2022-08-03 16:00

This commit is contained in:
Daniel Berteaud
2022-08-03 16:00:16 +02:00
parent a11f21e9c6
commit 5715cdb046
18 changed files with 198 additions and 11 deletions

View File

@@ -0,0 +1,18 @@
---
- when: cni_install_mode != 'none'
block:
- name: Download the CNI plugins
get_url:
url: "{{ cni_archive_url }}"
dest: "{{ cni_root_dir }}/tmp"
checksum: sha256:{{ cni_archive_sha256 }}
- name: Extract archive
unarchive:
src: "{{ cni_root_dir }}/tmp/cni-plugins-linux-amd64-v{{ cni_version }}.tgz"
dest: "{{ cni_root_dir }}/bin/"
remote_src: True
tags: cni