2016-12-07 16:36:24 +00:00
|
|
|
---
|
2020-04-22 20:33:44 +00:00
|
|
|
- name: Check ansible version
|
|
|
|
import_playbook: ansible_version.yml
|
2016-12-07 16:36:24 +00:00
|
|
|
|
2020-08-21 09:03:46 +00:00
|
|
|
- hosts: all
|
|
|
|
gather_facts: false
|
|
|
|
tags: always
|
|
|
|
tasks:
|
|
|
|
- name: "Set up proxy environment"
|
|
|
|
set_fact:
|
|
|
|
proxy_env:
|
|
|
|
http_proxy: "{{ http_proxy | default ('') }}"
|
|
|
|
HTTP_PROXY: "{{ http_proxy | default ('') }}"
|
|
|
|
https_proxy: "{{ https_proxy | default ('') }}"
|
|
|
|
HTTPS_PROXY: "{{ https_proxy | default ('') }}"
|
|
|
|
no_proxy: "{{ no_proxy | default ('') }}"
|
|
|
|
NO_PROXY: "{{ no_proxy | default ('') }}"
|
|
|
|
no_log: true
|
|
|
|
|
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"]}
|
|
|
|
|
2020-04-17 23:23:36 +00:00
|
|
|
- name: Gather facts
|
|
|
|
import_playbook: facts.yml
|
2017-12-11 12:49:21 +00:00
|
|
|
|
2018-11-10 16:51:24 +00:00
|
|
|
- hosts: etcd:k8s-cluster:calico-rr
|
2020-04-17 23:23:36 +00:00
|
|
|
gather_facts: False
|
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 }
|