Change order (test timing of handler)
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
This commit is contained in:
parent
fe306bd845
commit
5f1d1bfa8a
@ -1,5 +1,3 @@
|
|||||||
- block:
|
|
||||||
|
|
||||||
- name: Gather service facts
|
- name: Gather service facts
|
||||||
ansible.builtin.service_facts:
|
ansible.builtin.service_facts:
|
||||||
# Module requires no attributes
|
# Module requires no attributes
|
||||||
@ -24,6 +22,23 @@
|
|||||||
retries: 3
|
retries: 3
|
||||||
delay: 30
|
delay: 30
|
||||||
|
|
||||||
|
- name: Install kubectl tab-completion
|
||||||
|
ansible.builtin.shell:
|
||||||
|
cmd: kubectl completion bash | tee /etc/bash_completion.d/kubectl
|
||||||
|
|
||||||
|
- name: Extract container images
|
||||||
|
ansible.builtin.unarchive:
|
||||||
|
src: /opt/metacluster/container-images/image-tarballs.tgz
|
||||||
|
dest: /opt/metacluster/container-images
|
||||||
|
list_files: yes
|
||||||
|
register: imagetarballs
|
||||||
|
|
||||||
|
- name: Import container images
|
||||||
|
ansible.builtin.command:
|
||||||
|
cmd: k3s ctr image import {{ item }}
|
||||||
|
chdir: /opt/metacluster/container-images
|
||||||
|
loop: "{{ imagetarballs.files }}"
|
||||||
|
|
||||||
- name: Initialize tempfile
|
- name: Initialize tempfile
|
||||||
ansible.builtin.tempfile:
|
ansible.builtin.tempfile:
|
||||||
state: file
|
state: file
|
||||||
@ -68,25 +83,6 @@
|
|||||||
- name: Trigger handlers
|
- name: Trigger handlers
|
||||||
ansible.builtin.meta: flush_handlers
|
ansible.builtin.meta: flush_handlers
|
||||||
|
|
||||||
- name: Install kubectl tab-completion
|
|
||||||
ansible.builtin.shell:
|
|
||||||
cmd: kubectl completion bash | tee /etc/bash_completion.d/kubectl
|
|
||||||
|
|
||||||
- block:
|
|
||||||
|
|
||||||
- name: Extract container images
|
|
||||||
ansible.builtin.unarchive:
|
|
||||||
src: /opt/metacluster/container-images/image-tarballs.tgz
|
|
||||||
dest: /opt/metacluster/container-images
|
|
||||||
list_files: yes
|
|
||||||
register: imagetarballs
|
|
||||||
|
|
||||||
- name: Import container images
|
|
||||||
ansible.builtin.command:
|
|
||||||
cmd: k3s ctr image import {{ item }}
|
|
||||||
chdir: /opt/metacluster/container-images
|
|
||||||
loop: "{{ imagetarballs.files }}"
|
|
||||||
|
|
||||||
- name: Create component entries in /etc/hosts
|
- name: Create component entries in /etc/hosts
|
||||||
ansible.builtin.lineinfile:
|
ansible.builtin.lineinfile:
|
||||||
path: /etc/hosts
|
path: /etc/hosts
|
||||||
|
Loading…
Reference in New Issue
Block a user