install nfs-common on all k3s nodes

This commit is contained in:
David Kilias 2023-10-09 22:28:13 +02:00 committed by Stefan Haun
parent 9887e40fba
commit d0ee296f5f

9
group-k3s.yml Normal file
View file

@ -0,0 +1,9 @@
---
- hosts: k3s
become: true
tasks:
- name: Ensure nfs-common is installed on k3s VMs
ansible.builtin.apt:
pkg: nfs-common
state: present