Skip to content
Snippets Groups Projects
Unverified Commit 788190be authored by somewho's avatar somewho Committed by GitHub
Browse files

reset_confirmation in reset.yml (#10288)

* Update reset.yml

reset confirmation user input fix

* Update reset.yml

added default for non-interactive run in ci/cd

* fix reset_confirmation in reset.yml

* skip reset_confirmation promtp when reset_confirmation is defined via extra-vars option (for tests)
* check both string type and object type with user_input for reset_confirmation var

* reset_confirmation_prompt in conjunction with reset_confirmation

improvement inspired by:
https://github.com/kubernetes-sigs/kubespray/pull/10288#issuecomment-1637056880
parent 13aa3227
No related branches found
No related tags found
No related merge requests found
......@@ -25,10 +25,13 @@
run_once: True
when:
- not (skip_confirmation | default(false) | bool)
- reset_confirmation is not defined
- name: Check confirmation
fail:
msg: "Reset confirmation failed"
when: reset_confirmation != "yes"
when:
- not reset_confirmation | default(false) | bool
- not reset_confirmation_prompt.user_input | default("") == "yes"
- name: Gather information about installed services
service_facts:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment