summaryrefslogtreecommitdiffstats
path: root/test/integration/openshift_health_checker/preflight/playbooks/package_availability_succeeds.yml
blob: e37487f137754eb0aff643c80846a62970c4df21 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
---
- import_playbook: ../../setup_container.yml
  vars:
    image: preflight-aos-package-checks
    l_host_vars:
      openshift_deployment_type: origin

- name: Succeeds as Origin packages are public
  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_tasks: ../../teardown_container.yml