role for installing k3s

This commit is contained in:
2021-12-23 16:22:24 -05:00
parent 14f8936790
commit ad554214af
6 changed files with 61 additions and 3 deletions

View File

@@ -0,0 +1,11 @@
---
- name: Install required packages
apt:
name: "{{ item }}"
update_cache: yes
cache_valid_time: 3600
state: latest
with_items:
- htop
when: ansible_os_family == "Debian"