k3s-ansible/roles/ubuntu/tasks/main.yml

22 lines
710 B
YAML
Raw Normal View History

2020-05-22 18:01:03 +02:00
---
2020-05-22 20:11:00 +02:00
- name: Enable cgroup via boot commandline if not already enabled
2020-05-22 18:01:03 +02:00
lineinfile:
path: /boot/firmware/cmdline.txt
backrefs: yes
regexp: '^((?!.*\bcgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory\b).*)$'
2020-05-22 18:01:03 +02:00
line: '\1 cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory'
when:
2020-05-22 20:11:00 +02:00
- ansible_distribution == 'Ubuntu'
2020-05-22 18:01:03 +02:00
- name: Read /proc/cmdline to check for cgroups already running
shell: cat /proc/cmdline
register: cmdline
2020-05-22 18:01:03 +02:00
when:
- ansible_distribution == 'Ubuntu'
2020-05-22 18:01:03 +02:00
2020-05-22 20:11:00 +02:00
- name: Reboot to enable cgroups if not already running
2020-05-22 18:01:03 +02:00
reboot:
when:
2020-05-22 20:11:00 +02:00
- ansible_distribution == 'Ubuntu'
- '"cgroup_enable=cpuset cgroup_memory=1 cgroup_enable=memory" not in cmdline.stdout'