homeserver/roles/xanmanning.k3s/molecule/autodeploy/prepare.yml
mg 135bd53414 k3s - Basics (#423)
Co-authored-by: Michael Grote <michael.grote@posteo.de>
Reviewed-on: #423
2022-11-04 20:58:37 +01:00

27 lines
629 B
YAML

---
- name: Prepare
hosts: node*
become: true
tasks:
- name: Ensure apt cache is updated and iptables is installed
ansible.builtin.apt:
name: iptables
state: present
update_cache: true
when: ansible_pkg_mgr == 'apt'
- name: Ensure install directory and configuration directory exists
ansible.builtin.file:
path: "/opt/k3s/{{ item }}"
state: directory
mode: 0755
loop:
- bin
- etc
- name: Ensure data directory exists
ansible.builtin.file:
path: "/var/lib/k3s-io"
state: directory
mode: 0755