2015-10-03 20:19:50 +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]
|
2016-12-09 09:38:17 +00:00
|
|
|
gather_facts: False
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2016-12-09 09:38:17 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
|
|
|
- { role: bastion-ssh-config, tags: ["localhost", "bastion"] }
|
2016-12-09 09:38:17 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
- hosts: k8s_cluster:etcd
|
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) }}"
|
2016-09-06 14:04:41 +00:00
|
|
|
gather_facts: false
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2016-09-06 14:04:41 +00:00
|
|
|
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}
|
2016-08-12 14:06:31 +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-04-29 12:20:50 +00:00
|
|
|
- hosts: k8s_cluster: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 }}"
|
2015-12-17 21:46:50 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2015-12-31 09:03:22 +00:00
|
|
|
- { role: kubernetes/preinstall, tags: preinstall }
|
2021-10-12 07:31:47 +00:00
|
|
|
- { role: "container-engine", tags: "container-engine", when: deploy_container_engine }
|
2018-08-08 10:49:49 +00:00
|
|
|
- { role: download, tags: download, when: "not skip_downloads" }
|
2016-10-24 13:11:52 +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 }}"
|
2017-02-08 21:41:36 +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
|
|
|
|
etcd_events_cluster_setup: "{{ etcd_events_cluster_enabled }}"
|
2022-02-22 16:53:16 +00:00
|
|
|
when: etcd_deployment_type != "kubeadm"
|
2017-02-08 21:41:36 +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-10-24 13:11: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-07-26 13:18:47 +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-07-26 13:18:47 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2015-12-23 22:27:40 +00:00
|
|
|
- { role: kubernetes/node, tags: node }
|
2015-10-03 20:19:50 +00:00
|
|
|
|
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 }}"
|
2015-12-11 10:40:56 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2021-02-01 15:15:49 +00:00
|
|
|
- { role: kubernetes/control-plane, tags: master }
|
2017-10-26 08:10:33 +00:00
|
|
|
- { role: kubernetes/client, tags: client }
|
|
|
|
- { role: kubernetes-apps/cluster_roles, tags: cluster-roles }
|
2017-09-13 18:00:51 +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-09-13 18:00:51 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-09-13 18:00:51 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
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 }
|
2021-05-25 20:40:43 +00:00
|
|
|
- { role: network_plugin, tags: network }
|
2017-09-13 18:00:51 +00:00
|
|
|
|
2021-04-29 12:20:50 +00:00
|
|
|
- hosts: calico_rr
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2019-08-08 14:37:22 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2019-08-08 14:37:22 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
|
|
|
- { role: network_plugin/calico/rr, tags: ['network', 'calico_rr'] }
|
2019-08-08 14:37:22 +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-09-13 18:00:51 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-09-13 18:00: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-03-24 00:26:05 +00:00
|
|
|
- hosts: kube_control_plane
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
2017-11-15 18:50:23 +00:00
|
|
|
any_errors_fatal: "{{ any_errors_fatal | default(true) }}"
|
2021-02-23 17:44:02 +00:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2017-11-15 18:50:23 +00:00
|
|
|
roles:
|
2020-04-08 07:53:43 +00:00
|
|
|
- { role: kubespray-defaults }
|
2020-02-18 12:47:28 +00:00
|
|
|
- { role: kubernetes-apps/external_cloud_controller, tags: external-cloud-controller }
|
2016-11-03 15:57:11 +00:00
|
|
|
- { role: kubernetes-apps/network_plugin, tags: network }
|
2017-03-13 15:04:31 +00:00
|
|
|
- { role: kubernetes-apps/policy_controller, tags: policy-controller }
|
2018-02-13 01:08:44 +00:00
|
|
|
- { role: kubernetes-apps/ingress_controller, tags: ingress-controller }
|
2018-02-15 01:55:43 +00:00
|
|
|
- { role: kubernetes-apps/external_provisioner, tags: external-provisioner }
|
2016-09-19 19:12:42 +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 }
|
2019-04-29 12:12:22 +00:00
|
|
|
- { role: kubernetes/preinstall, when: "dns_mode != 'none' and resolvconf_mode == 'host_resolvconf'", tags: resolvconf, dns_late: true }
|