netz39-infra-ansible/group-k3s.yml
Alexander Dahl bc43af38d9 🚨 Add names to plays to fix name[play] linter warnings
Adds basic descriptions on what those host are supposed to do.
2025-03-02 09:22:05 +01:00

10 lines
205 B
YAML

---
- name: Tasks for kubernetes hosts
hosts: k3s
become: true
tasks:
- name: Ensure nfs-common is installed on k3s VMs
ansible.builtin.apt:
pkg: nfs-common
state: present