summaryrefslogtreecommitdiffstats
path: root/test/integration/openshift_health_checker/preflight/playbooks/package_version_origin.yml
blob: da3f6b844074942bfe8b02fd530c20f2abc28750 (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:
      openshift_deployment_type: origin

- name: Succeeds with Origin although multiple versions are available
  hosts: all
  roles:
    - openshift_health_checker
  tasks:
    - block:

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

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