ce5a34d86c
Only exclude buggy Ansible v2.7.0 (https://github.com/ansible/ansible/issues/46600#issuecomment-433863628) Fixup #3589
44 lines
1.1 KiB
YAML
44 lines
1.1 KiB
YAML
---
|
|
- hosts: localhost
|
|
tasks:
|
|
- name: "Check ansible version !=2.7.0"
|
|
assert:
|
|
msg: "Ansible V2.7.0 can't be used until: https://github.com/ansible/ansible/issues/46600 is fixed"
|
|
that:
|
|
- ansible_version.string is version("2.7.0", "<")
|
|
- ansible_version.string is version("2.5.0", ">=")
|
|
tags:
|
|
- check
|
|
vars:
|
|
ansible_connection: local
|
|
|
|
- hosts: all
|
|
vars:
|
|
ansible_ssh_pipelining: true
|
|
gather_facts: true
|
|
|
|
- hosts: "{{ node | default('etcd:k8s-cluster:vault:calico-rr') }}"
|
|
vars_prompt:
|
|
name: "delete_nodes_confirmation"
|
|
prompt: "Are you sure you want to delete nodes state? Type 'yes' to delete nodes."
|
|
default: "no"
|
|
private: no
|
|
|
|
pre_tasks:
|
|
- name: check confirmation
|
|
fail:
|
|
msg: "Delete nodes confirmation failed"
|
|
when: delete_nodes_confirmation != "yes"
|
|
|
|
- hosts: kube-master
|
|
roles:
|
|
- { role: remove-node/pre-remove, tags: pre-remove }
|
|
|
|
- hosts: "{{ node | default('kube-node') }}"
|
|
roles:
|
|
- { role: kubespray-defaults }
|
|
- { role: reset, tags: reset }
|
|
|
|
- hosts: kube-master
|
|
roles:
|
|
- { role: remove-node/post-remove, tags: post-remove }
|