diff options
Diffstat (limited to 'playbooks')
| -rw-r--r-- | playbooks/byo/openshift-preflight/check.yml | 41 | 
1 files changed, 12 insertions, 29 deletions
| diff --git a/playbooks/byo/openshift-preflight/check.yml b/playbooks/byo/openshift-preflight/check.yml index 32673d01d..935531e02 100644 --- a/playbooks/byo/openshift-preflight/check.yml +++ b/playbooks/byo/openshift-preflight/check.yml @@ -1,31 +1,14 @@  ---  - hosts: OSEv3 -  roles: -    - openshift_preflight/init - -- hosts: OSEv3 -  name: checks that apply to all hosts -  gather_facts: no -  ignore_errors: yes -  roles: -    - openshift_preflight/common - -- hosts: masters -  name: checks that apply to masters -  gather_facts: no -  ignore_errors: yes -  roles: -    - openshift_preflight/masters - -- hosts: nodes -  name: checks that apply to nodes -  gather_facts: no -  ignore_errors: yes -  roles: -    - openshift_preflight/nodes - -- hosts: OSEv3 -  name: verify check results -  gather_facts: no -  roles: -    - openshift_preflight/verify_status +  name: run OpenShift health checks +  roles: +    - openshift_health_checker +  post_tasks: +    # NOTE: we need to use the old "action: name" syntax until +    # https://github.com/ansible/ansible/issues/20513 is fixed. +    - action: openshift_health_check +      args: +        checks: +          - package_availability +          - package_update +          - package_version | 
