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

- name: Failure when AOS version doesn't match openshift_release
  hosts: all
  roles:
    - openshift_health_checker
  tasks:
    - block:

        - include: tasks/enable_repo.yml
          vars: { repo_name: "ose-3.2" }

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

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