2016-12-08 00:36:24 +08:00
|
|
|
---
|
2020-04-23 04:33:44 +08:00
|
|
|
- name: Check ansible version
|
|
|
|
import_playbook: ansible_version.yml
|
2016-12-08 00:36:24 +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
|
|
|
|
2019-03-26 17:59:16 +08:00
|
|
|
- hosts: bastion[0]
|
|
|
|
gather_facts: False
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2019-03-26 17:59:16 +08:00
|
|
|
roles:
|
|
|
|
- { role: kubespray-defaults}
|
|
|
|
- { role: bastion-ssh-config, tags: ["localhost", "bastion"]}
|
|
|
|
|
2020-04-18 07:23:36 +08:00
|
|
|
- name: Gather facts
|
|
|
|
import_playbook: facts.yml
|
2017-12-11 20:49:21 +08:00
|
|
|
|
2021-04-29 20:20:50 +08:00
|
|
|
- hosts: etcd:k8s_cluster:calico_rr
|
2020-04-18 07:23:36 +08:00
|
|
|
gather_facts: False
|
2017-02-16 02:04:28 +08:00
|
|
|
vars_prompt:
|
|
|
|
name: "reset_confirmation"
|
|
|
|
prompt: "Are you sure you want to reset cluster state? Type 'yes' to reset your cluster."
|
|
|
|
default: "no"
|
|
|
|
private: no
|
|
|
|
|
|
|
|
pre_tasks:
|
|
|
|
- name: check confirmation
|
2017-02-18 05:22:34 +08:00
|
|
|
fail:
|
|
|
|
msg: "Reset confirmation failed"
|
2017-02-16 02:04:28 +08:00
|
|
|
when: reset_confirmation != "yes"
|
|
|
|
|
2023-01-11 07:53:20 +08:00
|
|
|
- name: Gather information about installed services
|
|
|
|
service_facts:
|
|
|
|
|
2021-02-24 01:44:02 +08:00
|
|
|
environment: "{{ proxy_disable_env }}"
|
2016-12-08 00:36:24 +08:00
|
|
|
roles:
|
2017-06-17 00:18:35 +08:00
|
|
|
- { role: kubespray-defaults}
|
2022-03-14 17:08:22 +08:00
|
|
|
- { role: kubernetes/preinstall, when: "dns_mode != 'none' and resolvconf_mode == 'host_resolvconf'", tags: resolvconf, dns_early: true }
|
2016-12-08 00:36:24 +08:00
|
|
|
- { role: reset, tags: reset }
|