gpt4 book ai didi

ansible - 如果一场比赛失败,如何停止剧本

转载 作者:行者123 更新时间:2023-12-04 11:21:22 26 4
gpt4 key购买 nike

我有以下 3 个剧本。当其中一个播放失败时,下一个播放仍然执行。我认为这是因为我使用不同的主机目标运行这些游戏。

我想避免这种情况并在一场比赛失败时停止剧本,这可能吗?

---
- name: create the EC2 instances
hosts: localhost
any_errors_fatal: yes
connection: local
tasks:
- ...

- name: configure instances
hosts: appserver
any_errors_fatal: yes
gather_facts: true
tasks:
- ...

- name: Add to load balancer
hosts: localhost
any_errors_fatal: yes
vars:
component: travelmatrix
tasks:
- ...

最佳答案

如果有任何错误,您可以使用 any_errors_fatal 停止播放。

- name: create the EC2 instances
hosts: localhost
connection: local
any_errors_fatal: true
tasks:
- ...

Reference Link

关于ansible - 如果一场比赛失败,如何停止剧本,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37941253/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com