2018-09-06 14:26:57 +00:00
|
|
|
---
|
2018-08-23 14:51:52 +00:00
|
|
|
# Todo : selinux configuration
|
|
|
|
- name: Confirm selinux deployed
|
|
|
|
stat:
|
|
|
|
path: /etc/selinux/config
|
2019-11-11 15:05:41 +00:00
|
|
|
when:
|
|
|
|
- ansible_os_family == "RedHat"
|
|
|
|
- "'Amazon' not in ansible_distribution"
|
2018-08-23 14:51:52 +00:00
|
|
|
register: slc
|
|
|
|
|
|
|
|
- name: Set selinux policy
|
|
|
|
selinux:
|
|
|
|
policy: targeted
|
|
|
|
state: "{{ preinstall_selinux_state }}"
|
|
|
|
when:
|
|
|
|
- ansible_os_family == "RedHat"
|
2019-11-11 15:05:41 +00:00
|
|
|
- "'Amazon' not in ansible_distribution"
|
2019-04-17 15:42:03 +00:00
|
|
|
- slc.stat.exists
|
2018-08-23 14:51:52 +00:00
|
|
|
changed_when: False
|
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
|
|
|
|
- name: Disable IPv6 DNS lookup
|
|
|
|
lineinfile:
|
|
|
|
dest: /etc/gai.conf
|
|
|
|
line: "precedence ::ffff:0:0/96 100"
|
|
|
|
state: present
|
2020-06-12 07:55:55 +00:00
|
|
|
create: yes
|
2018-08-23 14:51:52 +00:00
|
|
|
backup: yes
|
|
|
|
when:
|
|
|
|
- disable_ipv6_dns
|
2020-08-28 09:28:53 +00:00
|
|
|
- not ansible_os_family in ["Flatcar Container Linux by Kinvolk"]
|
2018-08-23 14:51:52 +00:00
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
|
|
|
|
- name: Stat sysctl file configuration
|
|
|
|
stat:
|
2019-05-02 21:24:21 +00:00
|
|
|
path: "{{ sysctl_file_path }}"
|
2018-08-23 14:51:52 +00:00
|
|
|
register: sysctl_file_stat
|
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
|
|
|
|
- name: Change sysctl file path to link source if linked
|
|
|
|
set_fact:
|
2019-05-02 21:24:21 +00:00
|
|
|
sysctl_file_path: "{{ sysctl_file_stat.stat.lnk_source }}"
|
2018-08-23 14:51:52 +00:00
|
|
|
when:
|
|
|
|
- sysctl_file_stat.stat.islnk is defined
|
|
|
|
- sysctl_file_stat.stat.islnk
|
|
|
|
tags:
|
|
|
|
- bootstrap-os
|
|
|
|
|
2018-12-18 09:39:25 +00:00
|
|
|
- name: Make sure sysctl file path folder exists
|
|
|
|
file:
|
|
|
|
name: "{{ sysctl_file_path | dirname }}"
|
|
|
|
state: directory
|
|
|
|
|
2018-08-23 14:51:52 +00:00
|
|
|
- name: Enable ip forwarding
|
|
|
|
sysctl:
|
2019-05-02 21:24:21 +00:00
|
|
|
sysctl_file: "{{ sysctl_file_path }}"
|
2018-08-23 14:51:52 +00:00
|
|
|
name: net.ipv4.ip_forward
|
2020-11-27 11:54:49 +00:00
|
|
|
value: "1"
|
2018-08-23 14:51:52 +00:00
|
|
|
state: present
|
|
|
|
reload: yes
|
2020-09-03 14:41:41 +00:00
|
|
|
|
|
|
|
- name: Ensure kube-bench parameters are set
|
|
|
|
sysctl:
|
|
|
|
sysctl_file: /etc/sysctl.d/bridge-nf-call.conf
|
|
|
|
name: "{{ item.name }}"
|
|
|
|
value: "{{ item.value }}"
|
|
|
|
state: present
|
|
|
|
reload: yes
|
|
|
|
with_items:
|
|
|
|
- { name: vm.overcommit_memory, value: 1 }
|
|
|
|
- { name: kernel.panic, value: 10 }
|
|
|
|
- { name: kernel.panic_on_oops, value: 1 }
|
|
|
|
when: kubelet_protect_kernel_defaults|bool
|