2015-10-04 04:19:50 +08:00
|
|
|
---
|
2023-07-26 22:36:22 +08:00
|
|
|
- name: Fetch facts
|
|
|
|
import_tasks: facts.yml
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- facts
|
2023-09-11 20:12:11 +08:00
|
|
|
- kubelet
|
2016-12-13 18:43:06 +08:00
|
|
|
|
2023-07-26 22:36:22 +08:00
|
|
|
- name: Pre-upgrade kubelet
|
|
|
|
import_tasks: pre_upgrade.yml
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- kubelet
|
2017-04-03 21:50:17 +08:00
|
|
|
|
2017-04-20 00:00:44 +08:00
|
|
|
- name: Ensure /var/lib/cni exists
|
|
|
|
file:
|
|
|
|
path: /var/lib/cni
|
|
|
|
state: directory
|
|
|
|
mode: 0755
|
|
|
|
|
2023-07-26 22:36:22 +08:00
|
|
|
- name: Install kubelet binary
|
|
|
|
import_tasks: install.yml
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- kubelet
|
2016-02-12 06:08:16 +08:00
|
|
|
|
2023-07-26 22:36:22 +08:00
|
|
|
- name: Install kube-vip
|
|
|
|
import_tasks: loadbalancer/kube-vip.yml
|
2022-04-08 01:37:57 +08:00
|
|
|
when:
|
|
|
|
- is_kube_master
|
|
|
|
- kube_vip_enabled
|
|
|
|
tags:
|
|
|
|
- kube-vip
|
|
|
|
|
2023-07-26 22:36:22 +08:00
|
|
|
- name: Install nginx-proxy
|
|
|
|
import_tasks: loadbalancer/nginx-proxy.yml
|
2019-04-17 23:42:03 +08:00
|
|
|
when:
|
2021-12-06 15:58:32 +08:00
|
|
|
- not is_kube_master or kube_apiserver_bind_address != '0.0.0.0'
|
2019-04-17 23:42:03 +08:00
|
|
|
- loadbalancer_apiserver_localhost
|
|
|
|
- loadbalancer_apiserver_type == 'nginx'
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- nginx
|
2016-09-28 19:05:08 +08:00
|
|
|
|
2023-07-26 22:36:22 +08:00
|
|
|
- name: Install haproxy
|
|
|
|
import_tasks: loadbalancer/haproxy.yml
|
2019-04-17 23:42:03 +08:00
|
|
|
when:
|
2021-12-06 15:58:32 +08:00
|
|
|
- not is_kube_master or kube_apiserver_bind_address != '0.0.0.0'
|
2019-04-17 23:42:03 +08:00
|
|
|
- loadbalancer_apiserver_localhost
|
|
|
|
- loadbalancer_apiserver_type == 'haproxy'
|
2019-04-10 20:56:18 +08:00
|
|
|
tags:
|
|
|
|
- haproxy
|
|
|
|
|
2017-02-03 23:26:30 +08:00
|
|
|
- name: Ensure nodePort range is reserved
|
2023-06-26 18:15:45 +08:00
|
|
|
ansible.posix.sysctl:
|
2017-02-03 23:26:30 +08:00
|
|
|
name: net.ipv4.ip_local_reserved_ports
|
|
|
|
value: "{{ kube_apiserver_node_port_range }}"
|
|
|
|
sysctl_set: yes
|
2018-04-27 23:50:58 +08:00
|
|
|
sysctl_file: "{{ sysctl_file_path }}"
|
2017-02-03 23:26:30 +08:00
|
|
|
state: present
|
|
|
|
reload: yes
|
|
|
|
when: kube_apiserver_node_port_range is defined
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- kube-proxy
|
2017-02-03 23:26:30 +08:00
|
|
|
|
2020-07-28 16:39:08 +08:00
|
|
|
- name: Verify if br_netfilter module exists
|
|
|
|
command: "modinfo br_netfilter"
|
2018-06-13 02:30:18 +08:00
|
|
|
environment:
|
2019-05-03 05:24:21 +08:00
|
|
|
PATH: "{{ ansible_env.PATH }}:/sbin" # Make sure we can workaround RH's conservative path management
|
2017-09-06 20:11:51 +08:00
|
|
|
register: modinfo_br_netfilter
|
|
|
|
failed_when: modinfo_br_netfilter.rc not in [0, 1]
|
|
|
|
changed_when: false
|
2022-03-03 01:29:14 +08:00
|
|
|
check_mode: no
|
2017-09-06 20:11:51 +08:00
|
|
|
|
2018-12-18 17:39:25 +08:00
|
|
|
- name: Verify br_netfilter module path exists
|
|
|
|
file:
|
|
|
|
path: /etc/modules-load.d
|
|
|
|
state: directory
|
2021-07-12 15:00:47 +08:00
|
|
|
mode: 0755
|
2018-12-18 17:39:25 +08:00
|
|
|
|
2017-09-06 20:11:51 +08:00
|
|
|
- name: Enable br_netfilter module
|
2023-06-26 18:15:45 +08:00
|
|
|
community.general.modprobe:
|
2017-09-06 20:11:51 +08:00
|
|
|
name: br_netfilter
|
|
|
|
state: present
|
|
|
|
when: modinfo_br_netfilter.rc == 0
|
|
|
|
|
2017-10-13 17:50:29 +08:00
|
|
|
- name: Persist br_netfilter module
|
|
|
|
copy:
|
|
|
|
dest: /etc/modules-load.d/kubespray-br_netfilter.conf
|
|
|
|
content: br_netfilter
|
2021-07-12 15:00:47 +08:00
|
|
|
mode: 0644
|
2017-10-13 17:50:29 +08:00
|
|
|
when: modinfo_br_netfilter.rc == 0
|
|
|
|
|
2017-09-06 20:11:51 +08:00
|
|
|
# kube-proxy needs net.bridge.bridge-nf-call-iptables enabled when found if br_netfilter is not a module
|
|
|
|
- name: Check if bridge-nf-call-iptables key exists
|
|
|
|
command: "sysctl net.bridge.bridge-nf-call-iptables"
|
|
|
|
failed_when: false
|
|
|
|
changed_when: false
|
2022-03-03 01:29:14 +08:00
|
|
|
check_mode: no
|
2017-09-06 20:11:51 +08:00
|
|
|
register: sysctl_bridge_nf_call_iptables
|
|
|
|
|
|
|
|
- name: Enable bridge-nf-call tables
|
2023-06-26 18:15:45 +08:00
|
|
|
ansible.posix.sysctl:
|
2017-09-06 20:11:51 +08:00
|
|
|
name: "{{ item }}"
|
|
|
|
state: present
|
2018-04-27 23:50:58 +08:00
|
|
|
sysctl_file: "{{ sysctl_file_path }}"
|
2019-05-09 04:38:36 +08:00
|
|
|
value: "1"
|
2017-09-06 20:11:51 +08:00
|
|
|
reload: yes
|
2017-12-13 01:09:27 +08:00
|
|
|
when: sysctl_bridge_nf_call_iptables.rc == 0
|
2017-09-06 20:11:51 +08:00
|
|
|
with_items:
|
|
|
|
- net.bridge.bridge-nf-call-iptables
|
|
|
|
- net.bridge.bridge-nf-call-arptables
|
|
|
|
- net.bridge.bridge-nf-call-ip6tables
|
|
|
|
|
2020-07-22 14:58:25 +08:00
|
|
|
- name: Modprobe Kernel Module for IPVS
|
2023-06-26 18:15:45 +08:00
|
|
|
community.general.modprobe:
|
2018-01-29 13:15:32 +08:00
|
|
|
name: "{{ item }}"
|
|
|
|
state: present
|
|
|
|
with_items:
|
|
|
|
- ip_vs
|
|
|
|
- ip_vs_rr
|
|
|
|
- ip_vs_wrr
|
|
|
|
- ip_vs_sh
|
2018-08-14 20:13:44 +08:00
|
|
|
when: kube_proxy_mode == 'ipvs'
|
2018-01-29 13:15:32 +08:00
|
|
|
tags:
|
|
|
|
- kube-proxy
|
|
|
|
|
2020-12-08 10:17:11 +08:00
|
|
|
- name: Modprobe nf_conntrack_ipv4
|
2023-06-26 18:15:45 +08:00
|
|
|
community.general.modprobe:
|
2018-12-12 21:33:54 +08:00
|
|
|
name: nf_conntrack_ipv4
|
|
|
|
state: present
|
2020-12-08 10:17:11 +08:00
|
|
|
register: modprobe_nf_conntrack_ipv4
|
2021-07-12 15:00:47 +08:00
|
|
|
ignore_errors: true # noqa ignore-errors
|
2020-06-16 15:34:06 +08:00
|
|
|
when:
|
2018-12-12 21:33:54 +08:00
|
|
|
- kube_proxy_mode == 'ipvs'
|
2019-04-09 20:25:06 +08:00
|
|
|
tags:
|
|
|
|
- kube-proxy
|
2018-12-12 21:33:54 +08:00
|
|
|
|
2018-04-04 18:18:51 +08:00
|
|
|
- name: Persist ip_vs modules
|
|
|
|
copy:
|
|
|
|
dest: /etc/modules-load.d/kube_proxy-ipvs.conf
|
2021-07-12 15:00:47 +08:00
|
|
|
mode: 0644
|
2018-04-04 23:05:27 +08:00
|
|
|
content: |
|
|
|
|
ip_vs
|
|
|
|
ip_vs_rr
|
|
|
|
ip_vs_wrr
|
|
|
|
ip_vs_sh
|
2020-12-08 10:17:11 +08:00
|
|
|
{% if modprobe_nf_conntrack_ipv4 is success -%}
|
2018-04-04 23:05:27 +08:00
|
|
|
nf_conntrack_ipv4
|
2018-12-12 21:33:54 +08:00
|
|
|
{%- endif -%}
|
2018-04-04 18:18:51 +08:00
|
|
|
when: kube_proxy_mode == 'ipvs'
|
|
|
|
tags:
|
|
|
|
- kube-proxy
|
|
|
|
|
2023-07-26 22:36:22 +08:00
|
|
|
- name: Check cloud provider credentials
|
|
|
|
include_tasks: "cloud-credentials/{{ cloud_provider }}-credential-check.yml"
|
2018-03-31 08:24:57 +08:00
|
|
|
when:
|
|
|
|
- cloud_provider is defined
|
|
|
|
- cloud_provider in [ 'openstack', 'azure', 'vsphere' ]
|
|
|
|
tags:
|
|
|
|
- cloud-provider
|
|
|
|
- facts
|
|
|
|
|
2019-10-09 17:19:49 +08:00
|
|
|
- name: Test if openstack_cacert is a base64 string
|
|
|
|
set_fact:
|
2023-07-05 11:36:54 +08:00
|
|
|
openstack_cacert_is_base64: "{% if openstack_cacert is search('^([A-Za-z0-9+/]{4})*([A-Za-z0-9+/]{3}= | [A-Za-z0-9+/]{2}==)?$') %}true{% else %}false{% endif %}"
|
2019-10-09 17:19:49 +08:00
|
|
|
when:
|
|
|
|
- cloud_provider is defined
|
|
|
|
- cloud_provider == 'openstack'
|
|
|
|
- openstack_cacert is defined
|
|
|
|
- openstack_cacert | length > 0
|
|
|
|
|
|
|
|
|
2018-08-17 11:31:21 +08:00
|
|
|
- name: Write cacert file
|
|
|
|
copy:
|
2019-10-09 17:19:49 +08:00
|
|
|
src: "{{ openstack_cacert if not openstack_cacert_is_base64 else omit }}"
|
|
|
|
content: "{{ openstack_cacert | b64decode if openstack_cacert_is_base64 else omit }}"
|
2018-08-17 11:31:21 +08:00
|
|
|
dest: "{{ kube_config_dir }}/openstack-cacert.pem"
|
|
|
|
group: "{{ kube_cert_group }}"
|
|
|
|
mode: 0640
|
|
|
|
when:
|
|
|
|
- cloud_provider is defined
|
2018-09-06 19:05:50 +08:00
|
|
|
- cloud_provider == 'openstack'
|
2018-08-17 11:31:21 +08:00
|
|
|
- openstack_cacert is defined
|
2019-08-15 20:50:34 +08:00
|
|
|
- openstack_cacert | length > 0
|
2018-08-17 11:31:21 +08:00
|
|
|
tags:
|
|
|
|
- cloud-provider
|
|
|
|
|
2018-03-28 21:26:36 +08:00
|
|
|
- name: Write cloud-config
|
|
|
|
template:
|
2019-05-09 04:38:36 +08:00
|
|
|
src: "cloud-configs/{{ cloud_provider }}-cloud-config.j2"
|
2018-03-28 21:26:36 +08:00
|
|
|
dest: "{{ kube_config_dir }}/cloud_config"
|
|
|
|
group: "{{ kube_cert_group }}"
|
|
|
|
mode: 0640
|
|
|
|
when:
|
|
|
|
- cloud_provider is defined
|
2021-11-17 00:58:28 +08:00
|
|
|
- cloud_provider in [ 'openstack', 'azure', 'vsphere', 'aws', 'gce' ]
|
2020-03-21 04:54:08 +08:00
|
|
|
notify: Node | restart kubelet
|
2018-03-28 21:26:36 +08:00
|
|
|
tags:
|
|
|
|
- cloud-provider
|
|
|
|
|
2023-07-26 22:36:22 +08:00
|
|
|
- name: Install kubelet
|
|
|
|
import_tasks: kubelet.yml
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- kubelet
|
2019-10-09 17:19:49 +08:00
|
|
|
- kubeadm
|