加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
99-reset-cluster.yml 396 Bytes
一键复制 编辑 原始数据 按行查看 历史
setzero 提交于 2021-05-12 09:54 . [IMP]优化脚本默认值获取
# 所有节点卸载安装
- hosts:
- all
vars_prompt:
name: "reset_confirmation"
prompt: "确认要重置群集吗? 输入“yes”确认重置群集。"
default: "no"
private: no
pre_tasks:
- name: 重置确认
fail:
msg: "重置确认失败,取消重置集群操作。"
when: reset_confirmation != "yes"
roles:
- prepare/variables
- reset
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化