2015-10-04 04:19:50 +08:00
|
|
|
---
|
2018-01-29 19:37:48 +08:00
|
|
|
- import_tasks: facts.yml
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- facts
|
2016-12-13 18:43:06 +08:00
|
|
|
|
2018-01-29 19:37:48 +08:00
|
|
|
- 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
|
|
|
|
|
2018-01-29 19:37:48 +08:00
|
|
|
- import_tasks: install.yml
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- kubelet
|
2016-02-12 06:08:16 +08:00
|
|
|
|
2019-05-09 04:38:36 +08:00
|
|
|
- import_tasks: loadbalancer/nginx-proxy.yml
|
2019-04-17 23:42:03 +08:00
|
|
|
when:
|
|
|
|
- not is_kube_master
|
|
|
|
- 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
|
|
|
|
2019-05-09 04:38:36 +08:00
|
|
|
- import_tasks: loadbalancer/haproxy.yml
|
2019-04-17 23:42:03 +08:00
|
|
|
when:
|
|
|
|
- not is_kube_master
|
|
|
|
- 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
|
|
|
|
sysctl:
|
|
|
|
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
|
|
|
|
2017-09-06 20:11:51 +08:00
|
|
|
- name: Verify if br_netfilter module exists
|
|
|
|
shell: "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
|
|
|
|
|
2018-12-18 17:39:25 +08:00
|
|
|
- name: Verify br_netfilter module path exists
|
|
|
|
file:
|
|
|
|
path: /etc/modules-load.d
|
|
|
|
state: directory
|
|
|
|
|
2017-09-06 20:11:51 +08:00
|
|
|
- name: Enable br_netfilter module
|
|
|
|
modprobe:
|
|
|
|
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
|
|
|
|
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
|
|
|
|
register: sysctl_bridge_nf_call_iptables
|
|
|
|
|
|
|
|
- name: Enable bridge-nf-call tables
|
|
|
|
sysctl:
|
|
|
|
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
|
|
|
|
|
2018-01-29 13:15:32 +08:00
|
|
|
- name: Modprode Kernel Module for IPVS
|
|
|
|
modprobe:
|
|
|
|
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
|
|
|
|
|
2018-12-12 21:33:54 +08:00
|
|
|
- name: Modprobe nf_conntrack_ipv4 for kernels < 4.19
|
|
|
|
modprobe:
|
|
|
|
name: nf_conntrack_ipv4
|
|
|
|
state: present
|
|
|
|
register: enable_nf_conntrack
|
|
|
|
ignore_errors: yes
|
|
|
|
when: kube_proxy_mode == 'ipvs'
|
2019-04-09 20:25:06 +08:00
|
|
|
tags:
|
|
|
|
- kube-proxy
|
2018-12-12 21:33:54 +08:00
|
|
|
|
|
|
|
- name: Modprobe nf_conntrack for kernels >= 4.19
|
|
|
|
modprobe:
|
|
|
|
name: nf_conntrack
|
|
|
|
state: present
|
2018-12-18 16:34:19 +08:00
|
|
|
when:
|
2018-12-12 21:33:54 +08:00
|
|
|
- enable_nf_conntrack is failed
|
|
|
|
- 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
|
2018-04-04 23:05:27 +08:00
|
|
|
content: |
|
|
|
|
ip_vs
|
|
|
|
ip_vs_rr
|
|
|
|
ip_vs_wrr
|
|
|
|
ip_vs_sh
|
2018-12-12 21:33:54 +08:00
|
|
|
{% if enable_nf_conntrack is failed -%}
|
|
|
|
nf_conntrack
|
|
|
|
{%- else -%}
|
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
|
|
|
|
|
2018-10-16 22:15:05 +08:00
|
|
|
- name: Purge proxy manifest for kubeadm or if proxy services being provided by other means, e.g. network_plugin
|
2017-09-26 17:38:58 +08:00
|
|
|
file:
|
|
|
|
path: "{{ kube_manifest_dir }}/kube-proxy.manifest"
|
|
|
|
state: absent
|
2018-10-16 22:15:05 +08:00
|
|
|
when:
|
2018-12-06 18:33:38 +08:00
|
|
|
- kube_proxy_remove
|
2018-10-16 22:15:05 +08:00
|
|
|
tags:
|
|
|
|
- kube-proxy
|
|
|
|
|
|
|
|
- name: Cleanup kube-proxy leftovers from node
|
2019-01-28 18:00:49 +08:00
|
|
|
command: "{{ bin_dir }}/hyperkube kube-proxy --cleanup"
|
2018-10-16 22:15:05 +08:00
|
|
|
when:
|
|
|
|
- kube_proxy_remove
|
|
|
|
# `kube-proxy --cleanup`, being Ok as per shown WARNING, still returns 255 from above run (?)
|
|
|
|
ignore_errors: true
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- kube-proxy
|
2017-09-26 17:38:58 +08:00
|
|
|
|
2019-05-09 04:38:36 +08:00
|
|
|
- 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:
|
|
|
|
openstack_cacert_is_base64: "{% if openstack_cacert | b64decode %}true{% else %}false{% endif %}"
|
|
|
|
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
|
2018-09-20 22:31:28 +08:00
|
|
|
- cloud_provider in [ 'openstack', 'azure', 'vsphere', 'aws' ]
|
2018-03-28 21:26:36 +08:00
|
|
|
notify: restart kubelet
|
|
|
|
tags:
|
|
|
|
- cloud-provider
|
|
|
|
|
2019-05-09 04:38:36 +08:00
|
|
|
- import_tasks: kubelet.yml
|
2017-10-05 15:43:04 +08:00
|
|
|
tags:
|
|
|
|
- kubelet
|
2019-10-09 17:19:49 +08:00
|
|
|
- kubeadm
|