feat: k3s role

This commit is contained in:
NaeiKinDus 2024-02-04 14:48:13 +00:00
parent b7a09296bc
commit 83c6ce3513
16 changed files with 285 additions and 0 deletions

View file

@ -0,0 +1,14 @@
---
- name: restart firewall service
become: true
ansible.builtin.systemd_service:
name: nftables.service
enabled: true
state: restarted
- name: restart k3s service
become: true
ansible.builtin.systemd_service:
name: k3s.service
enabled: true
state: restarted