mirror of
https://github.com/PyratLabs/ansible-role-k3s
synced 2025-01-07 10:10:19 +01:00
15 lines
469 B
YAML
15 lines
469 B
YAML
---
|
|
|
|
- name: Ensure installation directory exists
|
|
ansible.builtin.file:
|
|
path: "{{ k3s_install_dir }}"
|
|
state: directory
|
|
mode: 0755
|
|
|
|
- name: Ensure k3s binary is copied from controller to target host
|
|
ansible.builtin.copy:
|
|
src: k3s
|
|
# TODO: allow airgap to bypass version post-fix
|
|
dest: "{{ k3s_install_dir }}/k3s-{{ k3s_release_version }}"
|
|
mode: 0755
|
|
become: "{{ k3s_become_for_install_dir | ternary(true, false, k3s_become_for_all) }}"
|