2016-12-09 18:44:52 +00:00
|
|
|
---
|
2020-04-22 20:33:44 +00:00
|
|
|
- name: Check ansible version
|
|
|
|
import_playbook: ansible_version.yml
|
2018-10-26 07:29:21 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
- name: Ensure compatibility with old groups
|
|
|
|
import_playbook: legacy_groups.yml
|
2021-03-24 00:26:05 +00:00
|
|
|
|
2018-10-10 02:14:33 +00:00
|
|
|
- hosts: bastion[0]
|
2017-02-14 16:08:44 +00:00
|
|
|
gather_facts: False
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-02-14 16:08:44 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
|
|
|
- { role: bastion-ssh-config, tags: ["localhost", "bastion"] }
|
2017-02-14 16:08:44 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
- hosts: k8s_cluster:etcd:calico_rr
|
2020-04-24 12:20:07 +00:00
|
|
|
strategy: linear
|
2017-04-04 09:52:39 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2017-02-14 16:08:44 +00:00
|
|
|
gather_facts: false
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-02-14 16:08:44 +00:00
|
|
|
vars:
|
|
|
|
# Need to disable pipelining for bootstrap-os as some systems have requiretty in sudoers set, which makes pipelining
|
|
|
|
# fail. bootstrap-os fixes this on these systems, so in later plays it can be enabled.
|
|
|
|
ansible_ssh_pipelining: false
|
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2017-02-23 11:07:17 +00:00
|
|
|
- { role: bootstrap-os, tags: bootstrap-os}
|
2017-02-14 16:08:44 +00:00
|
|
|
|
2020-04-17 23:23:36 +00:00
|
|
|
- name: Gather facts
|
2020-06-25 10:00:37 +00:00
|
|
|
tags: always
|
2020-04-17 23:23:36 +00:00
|
|
|
import_playbook: facts.yml
|
|
|
|
|
2021-03-24 00:26:05 +00:00
|
|
|
- name: Download images to ansible host cache via first kube_control_plane node
|
|
|
|
hosts: kube_control_plane[0]
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2020-03-05 15:31:39 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2020-03-05 15:31:39 +00:00
|
|
|
roles:
|
|
|
|
- { role: kubespray-defaults, when: "not skip_downloads and download_run_once and not download_localhost"}
|
|
|
|
- { role: kubernetes/preinstall, tags: preinstall, when: "not skip_downloads and download_run_once and not download_localhost" }
|
|
|
|
- { role: download, tags: download, when: "not skip_downloads and download_run_once and not download_localhost" }
|
|
|
|
|
2020-02-27 19:47:28 +00:00
|
|
|
- name: Prepare nodes for upgrade
|
2021-04-29 12:20:50 +00:00
|
|
|
hosts: k8s_cluster:etcd:calico_rr
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2017-04-04 09:52:39 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2016-12-09 18:44:52 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2016-12-09 18:44:52 +00:00
|
|
|
- { role: kubernetes/preinstall, tags: preinstall }
|
2018-08-08 10:49:49 +00:00
|
|
|
- { role: download, tags: download, when: "not skip_downloads" }
|
2017-02-14 16:08:44 +00:00
|
|
|
|
2020-02-27 19:47:28 +00:00
|
|
|
- name: Upgrade container engine on non-cluster nodes
|
2021-04-29 12:20:50 +00:00
|
|
|
hosts: etcd:calico_rr:!k8s_cluster
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2020-02-27 19:47:28 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2020-02-27 19:47:28 +00:00
|
|
|
serial: "{{ serial | default('20%') }}"
|
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2021-10-12 07:31:47 +00:00
|
|
|
- { role: container-engine, tags: "container-engine", when: deploy_container_engine }
|
2020-02-27 19:47:28 +00:00
|
|
|
|
2017-03-03 20:30:37 +00:00
|
|
|
- hosts: etcd
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2017-04-04 09:52:39 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2016-12-09 18:44:52 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2019-06-20 18:12:51 +00:00
|
|
|
- role: etcd
|
|
|
|
tags: etcd
|
|
|
|
vars:
|
|
|
|
etcd_cluster_setup: true
|
2022-02-17 16:03:38 +00:00
|
|
|
etcd_events_cluster_setup: "{{ etcd_events_cluster_enabled }}"
|
2022-02-22 16:53:16 +00:00
|
|
|
when: etcd_deployment_type != "kubeadm"
|
2016-12-09 18:44:52 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
- hosts: k8s_cluster
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2017-04-04 09:52:39 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2016-12-09 18:44:52 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2019-06-20 18:12:51 +00:00
|
|
|
- role: etcd
|
|
|
|
tags: etcd
|
|
|
|
vars:
|
|
|
|
etcd_cluster_setup: false
|
|
|
|
etcd_events_cluster_setup: false
|
2022-02-22 16:53:16 +00:00
|
|
|
when: etcd_deployment_type != "kubeadm"
|
2016-12-09 18:44:52 +00:00
|
|
|
|
2019-04-01 09:38:33 +00:00
|
|
|
- name: Handle upgrades to master components first to maintain backwards compat.
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2021-03-24 00:26:05 +00:00
|
|
|
hosts: kube_control_plane
|
2017-04-04 09:52:39 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2016-12-09 18:44:52 +00:00
|
|
|
serial: 1
|
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2017-02-14 16:08:44 +00:00
|
|
|
- { role: upgrade/pre-upgrade, tags: pre-upgrade }
|
2021-10-12 07:31:47 +00:00
|
|
|
- { role: container-engine, tags: "container-engine", when: deploy_container_engine }
|
2016-12-09 18:44:52 +00:00
|
|
|
- { role: kubernetes/node, tags: node }
|
2021-02-01 15:15:49 +00:00
|
|
|
- { role: kubernetes/control-plane, tags: master, upgrade_cluster_setup: true }
|
2017-10-26 08:10:33 +00:00
|
|
|
- { role: kubernetes/client, tags: client }
|
2020-01-20 19:43:36 +00:00
|
|
|
- { role: kubernetes/node-label, tags: node-label }
|
2017-10-26 08:10:33 +00:00
|
|
|
- { role: kubernetes-apps/cluster_roles, tags: cluster-roles }
|
2020-03-13 12:34:39 +00:00
|
|
|
- { role: kubernetes-apps, tags: csi-driver }
|
2017-06-27 20:11:44 +00:00
|
|
|
- { role: upgrade/post-upgrade, tags: post-upgrade }
|
2017-02-14 16:08:44 +00:00
|
|
|
|
2020-09-24 11:38:05 +00:00
|
|
|
- name: Upgrade calico and external cloud provider on all masters, calico-rrs, and nodes
|
2021-04-29 12:20:50 +00:00
|
|
|
hosts: kube_control_plane:calico_rr:kube_node
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2018-08-23 14:17:18 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
|
|
|
serial: "{{ serial | default('20%') }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2018-08-23 14:17:18 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2020-03-11 12:11:36 +00:00
|
|
|
- { role: kubernetes-apps/external_cloud_controller, tags: external-cloud-controller }
|
2018-08-23 14:17:18 +00:00
|
|
|
- { role: network_plugin, tags: network }
|
|
|
|
- { role: kubernetes-apps/network_plugin, tags: network }
|
|
|
|
- { role: kubernetes-apps/policy_controller, tags: policy-controller }
|
|
|
|
|
2019-04-01 09:38:33 +00:00
|
|
|
- name: Finally handle worker upgrades, based on given batch size
|
2021-04-29 12:20:50 +00:00
|
|
|
hosts: kube_node:calico_rr:!kube_control_plane
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2017-04-04 09:52:39 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-02-14 16:08:44 +00:00
|
|
|
serial: "{{ serial | default('20%') }}"
|
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2017-02-14 16:08:44 +00:00
|
|
|
- { role: upgrade/pre-upgrade, tags: pre-upgrade }
|
2021-10-12 07:31:47 +00:00
|
|
|
- { role: container-engine, tags: "container-engine", when: deploy_container_engine }
|
2017-02-14 16:08:44 +00:00
|
|
|
- { role: kubernetes/node, tags: node }
|
2018-12-06 10:33:38 +00:00
|
|
|
- { role: kubernetes/kubeadm, tags: kubeadm }
|
2020-01-20 19:43:36 +00:00
|
|
|
- { role: kubernetes/node-label, tags: node-label }
|
2018-09-12 05:24:31 +00:00
|
|
|
- { role: upgrade/post-upgrade, tags: post-upgrade }
|
2017-03-23 14:18:51 +00:00
|
|
|
|
2021-03-24 00:26:05 +00:00
|
|
|
- hosts: kube_control_plane[0]
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2017-03-23 14:18:51 +00:00
|
|
|
any_errors_fatal: true
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-03-23 14:18:51 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
|
|
|
- { role: win_nodes/kubernetes_patch, tags: ["master", "win_nodes"] }
|
2017-11-15 18:50:23 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
- hosts: calico_rr
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2017-04-04 09:52:39 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-02-14 16:08:44 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2017-02-14 16:08:44 +00:00
|
|
|
- { role: network_plugin/calico/rr, tags: network }
|
|
|
|
|
2021-03-24 00:26:05 +00:00
|
|
|
- hosts: kube_control_plane
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2017-04-04 09:52:39 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-02-14 16:08:44 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2022-03-22 12:43:43 +00:00
|
|
|
- { role: kubernetes-apps/ingress_controller, tags: ingress-controller }
|
|
|
|
- { role: kubernetes-apps/external_provisioner, tags: external-provisioner }
|
2018-09-10 09:39:26 +00:00
|
|
|
- { role: kubernetes-apps, tags: apps }
|
2019-04-29 12:12:22 +00:00
|
|
|
|
2022-02-26 18:29:23 +00:00
|
|
|
- name: Apply resolv.conf changes now that cluster DNS is up
|
|
|
|
hosts: k8s_cluster
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2019-04-29 12:12:22 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2019-04-29 12:12:22 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2022-02-26 18:29:23 +00:00
|
|
|
- { role: kubernetes/preinstall, when: "dns_mode != 'none' and resolvconf_mode == 'host_resolvconf'", tags: resolvconf, dns_late: true }
|