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

29 lines
869 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
slurp:
src: /proc/cmdline
register: slurped_cmdline
2020-05-22 18:01:03 +02:00
when:
- ansible_distribution == 'Ubuntu'
2020-05-22 18:01:03 +02:00
- name: Decode slurped command line
set_fact:
cmdline: "{{ slurped_cmdline.content | b64decode }}"
when:
- ansible_distribution == 'Ubuntu'
- name: Reboot to enable cgroups if not already enabled
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'