Skip to content
Snippets Groups Projects
Commit 2078a4b5 authored by Baptiste Jonglez's avatar Baptiste Jonglez
Browse files

Add advanced demo

parent 5fbf72df
No related branches found
No related tags found
No related merge requests found
- name: Setup memory configuration
hosts: all
vars:
low_memory_limit: 1024
tasks:
- name: Setup overcommit parameter for low memory
ansible.posix.sysctl:
name: vm.overcommit_memory
value: "1"
sysctl_file: /etc/sysctl.d/80-overcommit_memory.conf
when: "ansible_facts['memtotal_mb'] < low_memory_limit"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment