2018-09-06 14:26:57 +00:00
---
2018-08-23 14:51:52 +00:00
- name : Update package management cache (zypper) - SUSE
shell : zypper -n --gpg-auto-import-keys ref
register : make_cache_output
2018-10-16 22:33:30 +00:00
until : make_cache_output is succeeded
2018-08-23 14:51:52 +00:00
retries : 4
delay : "{{ retry_stagger | random + 3 }}"
when :
- ansible_pkg_mgr == 'zypper'
tags : bootstrap-os
- name : Update package management cache (APT)
apt :
update_cache : yes
cache_valid_time : 3600
when : ansible_os_family == "Debian"
tags :
- bootstrap-os
2020-02-17 16:59:28 +00:00
- name : Remove legacy docker repo file
file :
path : "{{ yum_repo_dir }}/docker.repo"
state : absent
when :
- ansible_distribution in ["CentOS","RedHat","OracleLinux"]
2020-03-17 10:12:21 +00:00
- not is_fedora_coreos
2020-02-17 16:59:28 +00:00
2018-08-23 14:51:52 +00:00
- name : Install python-dnf for latest RedHat versions
command : dnf install -y python-dnf yum
register : dnf_task_result
2018-10-16 22:33:30 +00:00
until : dnf_task_result is succeeded
2018-08-23 14:51:52 +00:00
retries : 4
delay : "{{ retry_stagger | random + 3 }}"
when :
- ansible_distribution == "Fedora"
- ansible_distribution_major_version|int > 21
2019-10-17 12:04:38 +00:00
- ansible_distribution_major_version|int <= 29
2020-03-17 10:12:21 +00:00
- not is_fedora_coreos
2019-10-17 12:04:38 +00:00
changed_when : False
tags :
- bootstrap-os
- name : Install python3-dnf for latest RedHat versions
command : dnf install -y python3-dnf
register : dnf_task_result
until : dnf_task_result is succeeded
retries : 4
delay : "{{ retry_stagger | random + 3 }}"
when :
- ansible_distribution == "Fedora"
- ansible_distribution_major_version|int >= 30
2020-03-17 10:12:21 +00:00
- not is_fedora_coreos
2018-08-23 14:51:52 +00:00
changed_when : False
tags :
- bootstrap-os
- name : Install epel-release on RedHat/CentOS
yum :
name : epel-release
state : present
when :
- ansible_distribution in ["CentOS","RedHat"]
2020-03-17 10:12:21 +00:00
- not is_fedora_coreos
2018-08-23 14:51:52 +00:00
- epel_enabled|bool
tags :
- bootstrap-os
2018-11-07 22:04:11 +00:00
- name : Update common_required_pkgs with ipvsadm when kube_proxy_mode is ipvs
set_fact :
2019-07-09 12:41:59 +00:00
common_required_pkgs : "{{ common_required_pkgs|default([]) + ['ipvsadm', 'ipset'] }}"
2018-11-07 22:04:11 +00:00
when : kube_proxy_mode == 'ipvs'
2018-08-23 14:51:52 +00:00
- name : Install packages requirements
action :
module : "{{ ansible_pkg_mgr }}"
2019-01-31 22:57:22 +00:00
name : "{{ required_pkgs | default([]) | union(common_required_pkgs|default([])) }}"
2018-08-23 14:51:52 +00:00
state : latest
register : pkgs_task_result
2018-10-16 22:33:30 +00:00
until : pkgs_task_result is succeeded
2018-08-23 14:51:52 +00:00
retries : 4
delay : "{{ retry_stagger | random + 3 }}"
2020-03-17 21:31:27 +00:00
when : not (ansible_os_family in ["CoreOS", "Coreos", "Container Linux by CoreOS", "Flatcar", "Flatcar Container Linux by Kinvolk", "ClearLinux"] or is_fedora_coreos)
2018-08-23 14:51:52 +00:00
tags :
- bootstrap-os
2018-12-18 09:39:25 +00:00
- name : Install ipvsadm for ClearLinux
swupd :
name : ipvsadm
state : present
when :
- ansible_os_family in ["ClearLinux"]
- kube_proxy_mode == 'ipvs'