summaryrefslogtreecommitdiffstats
path: root/test/integration/openshift_health_checker/preflight/playbooks/package_version_matches.yml
blob: 9c845e1e56b589dcb61861a10498b303103fa86d (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
25
26
---
- import_playbook: ../../setup_container.yml
  vars:
    image: preflight-aos-package-checks
    l_host_vars:
      openshift_deployment_type: openshift-enterprise
      openshift_release: 3.2

- name: Success when AOS version matches openshift_release
  hosts: all
  roles:
    - openshift_health_checker

  post_tasks:
    - block:

        # disable extras so we control docker version
        - include_tasks: tasks/enable_repo.yml
          vars: { repo_file: "CentOS-Base", repo_name: "extras", repo_enabled: 0 }

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

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