ac2135e450
* Fix recover-control-plane to work with etcd 3.3.x and add CI * Set default values for testcase * Add actual test jobs * Attempt to satisty gitlab ci linter * Fix ansible targets * Set etcd_member_name as stated in the docs... * Recovering from 0 masters is not supported yet * Add other master to broken_kube-master group as well * Increase number of retries to see if etcd needs more time to heal * Make number of retries for ETCD loops configurable, increase it for recovery CI and document it
36 lines
961 B
YAML
36 lines
961 B
YAML
---
|
|
- hosts: localhost
|
|
gather_facts: False
|
|
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.6.0", ">=")
|
|
tags:
|
|
- check
|
|
vars:
|
|
ansible_connection: local
|
|
|
|
- hosts: bastion[0]
|
|
gather_facts: False
|
|
roles:
|
|
- { role: kubespray-defaults}
|
|
- { role: bastion-ssh-config, tags: ["localhost", "bastion"]}
|
|
|
|
- hosts: "{{ groups['etcd'] | first }}"
|
|
roles:
|
|
- { role: kubespray-defaults}
|
|
- { role: recover_control_plane/etcd }
|
|
|
|
- hosts: "{{ groups['kube-master'] | first }}"
|
|
roles:
|
|
- { role: recover_control_plane/master }
|
|
|
|
- include: cluster.yml
|
|
|
|
- hosts: "{{ groups['kube-master'] }}"
|
|
roles:
|
|
- { role: kubespray-defaults}
|
|
- { role: recover_control_plane/post-recover }
|