Add retries

This commit is contained in:
Danny Bessems 2022-08-28 10:00:58 +02:00
parent 675dce4160
commit 521b323de2
1 changed files with 12 additions and 0 deletions

View File

@ -14,11 +14,19 @@
owner: root
group: root
mode: 0755
register: download
until: download is not failed
retries: 3
delay: 10
- name: Download K3s images tarball
ansible.builtin.get_url:
url: https://github.com/k3s-io/k3s/releases/download/{{ platform.k3s.version }}/k3s-airgap-images-amd64.tar.gz
dest: /var/lib/rancher/k3s/agent/images
register: download
until: download is not failed
retries: 3
delay: 10
- name: Download K3s install script
ansible.builtin.get_url:
@ -27,6 +35,10 @@
owner: root
group: root
mode: 0755
register: download
until: download is not failed
retries: 3
delay: 10
- name: Inject manifests
ansible.builtin.template: