commit | c3f9bf32f53004b61e1453d5b07bee232e818a9c | [log] [tgz] |
---|---|---|
author | Carlos Frias <friasc@google.com> | Fri Apr 06 22:45:35 2018 -0400 |
committer | Carlos Frias <friasc@google.com> | Fri Apr 06 22:45:35 2018 -0400 |
tree | f6fd16fb0966793008c47aee166a3b636f289d30 | |
parent | c5353ac06a2edc801f9e37eb918d70aced78bab7 [diff] |
Updated CONTRIBUTION.md file
This role performs updates to sysctl.conf.
None
Please note that IPV6 is disabled in this role. If you need to by-pass this functionality because IPV6 is already being disabled on a system then you can accomplish this by invoking the playbook with the --skip-tags flag like this:
ansible-playbook install-edge.yml --skip-tags=ipv6
Additional information regarding how Ansible uses tags can be obtained here.
The collection sysctl_ipv6
are the attributes that should be updated in order to disable IPV6 on a node. IPV6 must be disabled on all nodes that are part of an Apigee platform instance.
sysctl_ipv6: - { name: 'net.ipv6.conf.all.disable_ipv6', value: '1' } - { name: 'net.ipv6.conf.default.disable_ipv6', value: '1' }
The collection sysctl_minimum
are the attributes that should be updated on all nodes that are part of an Apigee platform instance:
sysctl_minimum: - { name: 'vm.swappiness', value: "{{ vm_swappiness }}" } - { name: 'net.ipv6.conf.all.disable_ipv6', value: '1' } - { name: 'net.ipv6.conf.default.disable_ipv6', value: '1' } - { name: 'net.ipv4.tcp_fin_timeout', value: "{{ apigee_net_ipv4_tcp_fin_timeout }}" } - { name: 'vm.max_map_count', value: '{{ apigee_max_map_count }}' }
None
Including an example of how to use your role (for instance, with variables passed in as parameters) is always nice for users too:
- hosts: servers roles: - { role: apigee-opdk-setup-os-sysctl }
Apache 2.0
Carlos Frias