k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
612 B
25 lines
612 B
---
|
|
- name: Check ansible version
|
|
import_playbook: ansible_version.yml
|
|
|
|
- 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 }
|