소스 검색

add any_errors_fatal to openstack playbooks

Tzu-Mainn Chen 7 년 전
부모
커밋
fd5ecc071d
2개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      playbooks/openstack/openshift-cluster/prerequisites.yml
  2. 4 0
      playbooks/openstack/openshift-cluster/provision.yml

+ 1 - 0
playbooks/openstack/openshift-cluster/prerequisites.yml

@@ -1,5 +1,6 @@
 ---
 - hosts: localhost
+  any_errors_fatal: true
   tasks:
   - name: Check dependencies and OpenStack prerequisites
     import_role:

+ 4 - 0
playbooks/openstack/openshift-cluster/provision.yml

@@ -1,5 +1,6 @@
 ---
 - name: Create the OpenStack resources for cluster installation
+  any_errors_fatal: true
   hosts: localhost
   tasks:
   - name: provision cluster
@@ -14,6 +15,7 @@
 
 
 - name: Wait for the nodes and gather their facts
+  any_errors_fatal: true
   hosts: oo_all_hosts
   become: yes
   # NOTE: The nodes may not be up yet, don't gather facts here.
@@ -30,6 +32,7 @@
 # TODO(shadower): consider splitting this up so people can stop here
 # and configure their DNS if they have to.
 - name: Populate the DNS entries
+  any_errors_fatal: true
   hosts: localhost
   tasks:
   - name: Populate DNS entries
@@ -44,6 +47,7 @@
 - import_playbook: ../../init/basic_facts.yml
 
 - name: Optionally subscribe the RHEL nodes
+  any_errors_fatal: true
   hosts: oo_all_hosts
   become: yes
   gather_facts: yes