Packer.Images/ansible/roles/metacluster/tasks/k3s.yml
Danny Bessems e0a5b5a5da
Some checks failed
continuous-integration/drone/push Build is failing
Reorganize dependencies/components;Fix folder name
2022-06-25 00:50:44 +02:00

29 lines
781 B
YAML

- name: Create folder structures
ansible.builtin.file:
path: "{{ item }}"
state: directory
loop:
- /var/lib/rancher/k3s/agent/images
- /opt/metacluster/k3s
- name: Download & install K3s binary
ansible.builtin.get_url:
url: https://github.com/k3s-io/k3s/releases/download/{{ k3s.version }}/k3s
dest: /usr/local/bin/k3s
owner: root
group: root
mode: 0755
- name: Download K3s images tarball
ansible.builtin.get_url:
url: https://github.com/k3s-io/k3s/releases/download/{{ k3s.version }}/k3s-airgap-images-amd64.tar.gz
dest: /var/lib/rancher/k3s/agent/images
- name: Download K3s install script
ansible.builtin.get_url:
url: https://get.k3s.io
dest: /opt/metacluster/k3s
owner: root
group: root
mode: 0755