2016-12-07 16:36:24 +00:00
|
|
|
---
|
2018-10-26 07:29:21 +00:00
|
|
|
- hosts: localhost
|
|
|
|
tasks:
|
2018-10-31 10:01:19 +00:00
|
|
|
- name: "Check ansible version !=2.7.0"
|
2018-10-26 07:29:21 +00:00
|
|
|
assert:
|
|
|
|
msg: "Ansible V2.7.0 can't be used until: https://github.com/ansible/ansible/issues/46600 is fixed"
|
|
|
|
that:
|
2018-10-31 10:01:19 +00:00
|
|
|
- ansible_version.string is version("2.7.0", "!=")
|
2019-01-03 08:04:26 +00:00
|
|
|
- ansible_version.string is version("2.6.0", ">=")
|
2018-10-26 07:29:21 +00:00
|
|
|
tags:
|
|
|
|
- check
|
|
|
|
vars:
|
|
|
|
ansible_connection: local
|
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 }
|