This commit is contained in:
2026-04-23 12:40:48 +02:00
parent 135bae97e1
commit 1940bba333
+11
View File
@@ -1,7 +1,18 @@
- name: Install kubernetes on Rocky 9
become: "{{ 'no' if inventory_hostname == 'nas.home.lan' else 'yes' }}"
block:
- name: Get root mount
set_fact:
root_mount: "{{ ansible_mounts | selectattr('mount', 'equalto', '/') | first }}"
- name: Fail if total size < 10GB
fail:
msg: >
Root filesystem is too small!
Total: {{ (root_mount.size_total / 1024 / 1024 / 1024) | round(2) }} GB
when: root_mount.size_total < (10 * 1024 * 1024 * 1024)
- name: Disable SELinux
ansible.posix.selinux:
state: permissive