summaryrefslogtreecommitdiffstats
path: root/test/integration/openshift_health_checker/preflight/playbooks/package_availability_missing_required.yml
blob: 31d0d521ecdf25840d0d60198744c74512677ab5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- include: ../../setup_container.yml
  vars:
    image: preflight-aos-package-checks
    l_host_vars:
      deployment_type: openshift-enterprise

- name: Fail as required packages cannot be installed
  hosts: all
  roles:
    - openshift_health_checker
  tasks:
    - block:

        - action: openshift_health_check
          args:
            checks: [ 'package_availability' ]

      always:  # destroy the container whether check passed or not
        - include: ../../teardown_container.yml