Update to 2024-06-17 10:01

This commit is contained in:
Daniel Berteaud
2024-06-17 10:01:05 +02:00
parent a55c54a1c5
commit 8590b558e8
15 changed files with 80 additions and 8 deletions

View File

@@ -0,0 +1,19 @@
---
- when: consul_cni_install_mode != 'none'
block:
- name: Download the CNI plugins
get_url:
url: "{{ consul_cni_archive_url }}"
dest: "{{ consul_cni_root_dir }}/tmp"
checksum: sha256:{{ consul_cni_archive_sha256 }}
- name: Extract archive
unarchive:
src: "{{ consul_cni_root_dir }}/tmp/consul-cni_{{ consul_cni_version }}_linux_amd64.zip"
dest: "{{ consul_cni_root_dir }}/bin/"
include: ["consul-cni"]
remote_src: true
tags: cni