9 lines
213 B
YAML
9 lines
213 B
YAML
- name: Download the setup script
|
|
ansible.builtin.get_url:
|
|
url: https://get.k3s.io
|
|
dest: /tmp/k3s.sh
|
|
mode: "0644"
|
|
- name: Run installation script
|
|
ansible.builtin.command:
|
|
cmd: bash /tmp/k3s.sh
|