2016-12-07 16:36:24 +00:00
|
|
|
---
|
2018-10-26 07:29:21 +00:00
|
|
|
- hosts: localhost
|
2019-02-26 03:36:44 +00:00
|
|
|
become: no
|
2019-10-15 13:57:53 +00:00
|
|
|
gather_facts: False
|
2018-10-26 07:29:21 +00:00
|
|
|
tasks:
|
2019-04-17 17:18:05 +00:00
|
|
|
- name: "Check ansible version >=2.7.8"
|
2018-10-26 07:29:21 +00:00
|
|
|
assert:
|
2019-04-17 17:18:05 +00:00
|
|
|
msg: "Ansible must be v2.7.8 or higher"
|
2018-10-26 07:29:21 +00:00
|
|
|
that:
|
2019-04-17 17:18:05 +00:00
|
|
|
- ansible_version.string is version("2.7.8", ">=")
|
2018-10-26 07:29:21 +00:00
|
|
|
tags:
|
|
|
|
- check
|
|
|
|
vars:
|
|
|
|
ansible_connection: local
|
2016-12-07 16:36:24 +00:00
|
|
|
|
2019-03-26 09:59:16 +00:00
|
|
|
- hosts: bastion[0]
|
|
|
|
gather_facts: False
|
|
|
|
roles:
|
|
|
|
- { role: kubespray-defaults}
|
|
|
|
- { role: bastion-ssh-config, tags: ["localhost", "bastion"]}
|
|
|
|
|
2016-12-07 16:36:24 +00:00
|
|
|
- hosts: all
|
2017-12-11 12:49:21 +00:00
|
|
|
gather_facts: true
|
|
|
|
|
2018-11-10 16:51:24 +00:00
|
|
|
- hosts: etcd:k8s-cluster:calico-rr
|
2017-02-15 18:04:28 +00: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-17 21:22:34 +00:00
|
|
|
fail:
|
|
|
|
msg: "Reset confirmation failed"
|
2017-02-15 18:04:28 +00:00
|
|
|
when: reset_confirmation != "yes"
|
|
|
|
|
2016-12-07 16:36:24 +00:00
|
|
|
roles:
|
2017-06-16 16:18:35 +00:00
|
|
|
- { role: kubespray-defaults}
|
2016-12-07 16:36:24 +00:00
|
|
|
- { role: reset, tags: reset }
|