
The aim of this PS is to add support for appending grub cmdline params per node image type. For example for worker node we may need to apply hugepages and cpu pinning params. Change-Id: Ieb6104100325cf888046d31da0327b01eaa280ac
10 lines
473 B
YAML
10 lines
473 B
YAML
# Settings here will be applied to /boot/grub/grub.cfg when grub is installed
|
|
- name: "Append any user-defined grub cmdline linux default"
|
|
set_fact:
|
|
grub_cmdline_linux_default: "{% if grub_cmdline_linux_default_append is defined %}{{ grub.GRUB_CMDLINE_LINUX_DEFAULT + grub_cmdline_linux_default_append }}{% else %}{{ grub.GRUB_CMDLINE_LINUX_DEFAULT }}{% endif %}"
|
|
- name: "Grub | Grub config"
|
|
template:
|
|
src: grub.j2
|
|
dest: "/etc/default/grub"
|
|
mode: 0644
|