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.
16 lines
366 B
16 lines
366 B
---
|
|
|
|
- hosts: all
|
|
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
|
|
fail: msg="Reset confirmation failed"
|
|
when: reset_confirmation != "yes"
|
|
|
|
roles:
|
|
- { role: reset, tags: reset }
|