set any_errors_fatal to true for all host sections

Add `any_errors_fatal: true` to all host sections in `site.yml.sample`
and `site-container.yml.sample` so that the playbook execution
ceases spontaneously and instantaneously when errors occurs.

Signed-off-by: Rishabh Dave <ridave@redhat.com>
pull/3459/head
Rishabh Dave 2018-12-17 16:04:46 +05:30 committed by Sébastien Han
parent f99a875b7f
commit 5f43dae593
2 changed files with 5 additions and 0 deletions

View File

@ -89,6 +89,7 @@
- (not (inventory_hostname in groups.get('clients', [])) or (inventory_hostname == groups.get('clients', [''])|first)) - (not (inventory_hostname in groups.get('clients', [])) or (inventory_hostname == groups.get('clients', [''])|first))
- hosts: mons - hosts: mons
any_errors_fatal: true
tasks: tasks:
- name: set ceph monitor install 'In Progress' - name: set ceph monitor install 'In Progress'
run_once: true run_once: true
@ -122,6 +123,7 @@
name: ceph-mgr name: ceph-mgr
- hosts: mons - hosts: mons
any_errors_fatal: true
tasks: tasks:
- name: set ceph monitor install 'Complete' - name: set ceph monitor install 'Complete'
run_once: true run_once: true
@ -134,6 +136,7 @@
- hosts: mgrs - hosts: mgrs
become: True become: True
gather_facts: false gather_facts: false
any_errors_fatal: true
tasks: tasks:
# pre-tasks for following imports - # pre-tasks for following imports -
- name: set ceph manager install 'In Progress' - name: set ceph manager install 'In Progress'
@ -451,6 +454,7 @@
- hosts: mons - hosts: mons
gather_facts: false gather_facts: false
become: True become: True
any_errors_fatal: true
tasks: tasks:
- import_role: - import_role:
name: ceph-defaults name: ceph-defaults

View File

@ -478,6 +478,7 @@
- hosts: mons - hosts: mons
gather_facts: false gather_facts: false
become: True become: True
any_errors_fatal: true
tasks: tasks:
- import_role: - import_role:
name: ceph-defaults name: ceph-defaults