mirror of
https://gitlab.sectorq.eu/jaydee/ansible.git
synced 2026-09-09 05:37:35 +02:00
build
This commit is contained in:
@@ -1,7 +1,18 @@
|
|||||||
- name: Install kubernetes on Rocky 9
|
- name: Install kubernetes on Rocky 9
|
||||||
become: "{{ 'no' if inventory_hostname == 'nas.home.lan' else 'yes' }}"
|
become: "{{ 'no' if inventory_hostname == 'nas.home.lan' else 'yes' }}"
|
||||||
block:
|
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
|
- name: Disable SELinux
|
||||||
ansible.posix.selinux:
|
ansible.posix.selinux:
|
||||||
state: permissive
|
state: permissive
|
||||||
|
|||||||
Reference in New Issue
Block a user