forked from k-space/kube
		
	reconfigure grub only on x86 nodes
This commit is contained in:
		| @@ -15,11 +15,18 @@ | ||||
|           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' | ||||
|  | ||||
|      | ||||
|     - name: Load grub defaults | ||||
|       ansible.builtin.shell: update-grub | ||||
|       when: grub_defaults.changed     | ||||
|  | ||||
|     - name: Ensure nfs-common is installed | ||||
|       ansible.builtin.apt: | ||||
|         name: nfs-common | ||||
|         state: present | ||||
|  | ||||
| - name: Reconfigure Kubernetes nodes | ||||
|   hosts: kubernetes | ||||
|   vars: | ||||
|   | ||||
		Reference in New Issue
	
	Block a user