2015-10-04 04:19:50 +08:00
|
|
|
---
|
2020-04-23 04:33:44 +08:00
|
|
|
- name: Check ansible version
|
|
|
|
import_playbook: ansible_version.yml
|
2018-10-26 15:29:21 +08:00
|
|
|
|
2021-04-29 20:20:50 +08:00
|
|
|
- name: Ensure compatibility with old groups
|
|
|
|
import_playbook: legacy_groups.yml
|
2021-03-24 08:26:05 +08:00
|
|
|
|
2018-10-10 10:14:33 +08:00
|
|
|
- hosts: bastion[0]
|
2016-12-09 17:38:17 +08:00
|
|
|
gather_facts: False
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2016-12-09 17:38:17 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
|
|
|
- { role: bastion-ssh-config, tags: ["localhost", "bastion"] }
|
2016-12-09 17:38:17 +08:00
|
|
|
|
2021-04-29 20:20:50 +08:00
|
|
|
- hosts: k8s_cluster:etcd
|
2020-04-24 20:20:07 +08:00
|
|
|
strategy: linear
|
2017-04-04 17:52:39 +08:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2016-09-06 22:04:41 +08:00
|
|
|
gather_facts: false
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2016-09-06 22:04:41 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
2017-02-23 19:07:17 +08:00
|
|
|
- { role: bootstrap-os, tags: bootstrap-os}
|
2016-08-12 22:06:31 +08:00
|
|
|
|
2020-04-18 07:23:36 +08:00
|
|
|
- name: Gather facts
|
2020-06-25 18:00:37 +08:00
|
|
|
tags: always
|
2020-04-18 07:23:36 +08:00
|
|
|
import_playbook: facts.yml
|
|
|
|
|
2021-04-29 20:20:50 +08:00
|
|
|
- hosts: k8s_cluster:etcd
|
2020-04-18 07:23:36 +08:00
|
|
|
gather_facts: False
|
2017-04-04 17:52:39 +08:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2015-12-18 05:46:50 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
2015-12-31 17:03:22 +08:00
|
|
|
- { role: kubernetes/preinstall, tags: preinstall }
|
2021-10-12 15:31:47 +08:00
|
|
|
- { role: "container-engine", tags: "container-engine", when: deploy_container_engine }
|
2018-08-08 18:49:49 +08:00
|
|
|
- { role: download, tags: download, when: "not skip_downloads" }
|
2016-10-24 21:11:52 +08:00
|
|
|
|
2022-09-09 16:29:22 +08:00
|
|
|
- hosts: etcd:kube_control_plane
|
2020-04-18 07:23:36 +08:00
|
|
|
gather_facts: False
|
2017-04-04 17:52:39 +08:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-02-09 05:41:36 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
2019-06-21 02:12:51 +08:00
|
|
|
- role: etcd
|
|
|
|
tags: etcd
|
|
|
|
vars:
|
|
|
|
etcd_cluster_setup: true
|
|
|
|
etcd_events_cluster_setup: "{{ etcd_events_cluster_enabled }}"
|
2022-02-23 00:53:16 +08:00
|
|
|
when: etcd_deployment_type != "kubeadm"
|
2017-02-09 05:41:36 +08:00
|
|
|
|
2021-04-29 20:20:50 +08:00
|
|
|
- hosts: k8s_cluster
|
2020-04-18 07:23:36 +08:00
|
|
|
gather_facts: False
|
2017-04-04 17:52:39 +08:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2016-10-24 21:11:52 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
2019-06-21 02:12:51 +08:00
|
|
|
- role: etcd
|
|
|
|
tags: etcd
|
|
|
|
vars:
|
|
|
|
etcd_cluster_setup: false
|
|
|
|
etcd_events_cluster_setup: false
|
2022-09-09 16:29:22 +08:00
|
|
|
when:
|
|
|
|
- etcd_deployment_type != "kubeadm"
|
|
|
|
- kube_network_plugin in ["calico", "flannel", "canal", "cilium"] or cilium_deploy_additionally | default(false) | bool
|
|
|
|
- kube_network_plugin != "calico" or calico_datastore == "etcd"
|
2016-07-26 21:18:47 +08:00
|
|
|
|
2021-04-29 20:20:50 +08:00
|
|
|
- hosts: k8s_cluster
|
2020-04-18 07:23:36 +08:00
|
|
|
gather_facts: False
|
2017-04-04 17:52:39 +08:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2016-07-26 21:18:47 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
2015-12-24 06:27:40 +08:00
|
|
|
- { role: kubernetes/node, tags: node }
|
2015-10-04 04:19:50 +08:00
|
|
|
|
2021-03-24 08:26:05 +08:00
|
|
|
- hosts: kube_control_plane
|
2020-04-18 07:23:36 +08:00
|
|
|
gather_facts: False
|
2017-04-04 17:52:39 +08:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2015-12-11 18:40:56 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
2021-02-01 23:15:49 +08:00
|
|
|
- { role: kubernetes/control-plane, tags: master }
|
2017-10-26 16:10:33 +08:00
|
|
|
- { role: kubernetes/client, tags: client }
|
|
|
|
- { role: kubernetes-apps/cluster_roles, tags: cluster-roles }
|
2017-09-14 02:00:51 +08:00
|
|
|
|
2021-04-29 20:20:50 +08:00
|
|
|
- hosts: k8s_cluster
|
2020-04-18 07:23:36 +08:00
|
|
|
gather_facts: False
|
2017-09-14 02:00:51 +08:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-09-14 02:00:51 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
2018-12-06 18:33:38 +08:00
|
|
|
- { role: kubernetes/kubeadm, tags: kubeadm}
|
2020-01-21 03:43:36 +08:00
|
|
|
- { role: kubernetes/node-label, tags: node-label }
|
2021-05-26 04:40:43 +08:00
|
|
|
- { role: network_plugin, tags: network }
|
2017-09-14 02:00:51 +08:00
|
|
|
|
2021-04-29 20:20:50 +08:00
|
|
|
- hosts: calico_rr
|
2020-04-18 07:23:36 +08:00
|
|
|
gather_facts: False
|
2019-08-08 22:37:22 +08:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2019-08-08 22:37:22 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
|
|
|
- { role: network_plugin/calico/rr, tags: ['network', 'calico_rr'] }
|
2019-08-08 22:37:22 +08:00
|
|
|
|
2021-03-24 08:26:05 +08:00
|
|
|
- hosts: kube_control_plane[0]
|
2020-04-18 07:23:36 +08:00
|
|
|
gather_facts: False
|
2017-09-14 02:00:51 +08:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-09-14 02:00:51 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
|
|
|
- { role: win_nodes/kubernetes_patch, tags: ["master", "win_nodes"] }
|
2017-11-16 02:50:23 +08:00
|
|
|
|
2021-03-24 08:26:05 +08:00
|
|
|
- hosts: kube_control_plane
|
2020-04-18 07:23:36 +08:00
|
|
|
gather_facts: False
|
2017-11-16 02:50:23 +08:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-11-16 02:50:23 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
2020-02-18 20:47:28 +08:00
|
|
|
- { role: kubernetes-apps/external_cloud_controller, tags: external-cloud-controller }
|
2016-11-03 23:57:11 +08:00
|
|
|
- { role: kubernetes-apps/network_plugin, tags: network }
|
2017-03-13 23:04:31 +08:00
|
|
|
- { role: kubernetes-apps/policy_controller, tags: policy-controller }
|
2018-02-13 09:08:44 +08:00
|
|
|
- { role: kubernetes-apps/ingress_controller, tags: ingress-controller }
|
2018-02-15 09:55:43 +08:00
|
|
|
- { role: kubernetes-apps/external_provisioner, tags: external-provisioner }
|
2016-09-20 03:12:42 +08:00
|
|
|
- { role: kubernetes-apps, tags: apps }
|
2019-04-29 20:12:22 +08:00
|
|
|
|
2022-02-27 02:29:23 +08:00
|
|
|
- name: Apply resolv.conf changes now that cluster DNS is up
|
|
|
|
hosts: k8s_cluster
|
2020-04-18 07:23:36 +08:00
|
|
|
gather_facts: False
|
2019-04-29 20:12:22 +08:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2019-04-29 20:12:22 +08:00
|
|
|
roles:
|
2020-04-08 15:53:43 +08:00
|
|
|
- { role: kubespray-defaults }
|
2019-04-29 20:12:22 +08:00
|
|
|
- { role: kubernetes/preinstall, when: "dns_mode != 'none' and resolvconf_mode == 'host_resolvconf'", tags: resolvconf, dns_late: true }
|