kube: no need to reconfigure grub anymore

This commit is contained in:
2025-08-02 14:41:55 +03:00
parent 0ed97f0263
commit c1d68ac015

View File

@@ -28,27 +28,6 @@
state: latest
pkg: libedgetpu1-std
- name: Reconfigure Kubernetes worker nodes
hosts:
- workers
tasks:
- name: Configure grub defaults
copy:
dest: "/etc/default/grub"
content: |
GRUB_DEFAULT=0
GRUB_TIMEOUT_STYLE=countdown
GRUB_TIMEOUT=5
GRUB_DISTRIBUTOR=`lsb_release -i -s 2> /dev/null || echo Debian`
GRUB_CMDLINE_LINUX_DEFAULT="quiet splash memhp_default_state=online"
GRUB_CMDLINE_LINUX="memhp_default_state=online rootflags=pquota"
register: grub_defaults
when: ansible_architecture == 'x86_64' and ansible_virtualization_role == 'guest' # TODO: detect xfs
- name: Load grub defaults
ansible.builtin.shell: update-grub
when: grub_defaults.changed
- name: Reconfigure Kubernetes nodes
hosts: kubelets
vars: