summaryrefslogtreecommitdiffstats
path: root/test/integration/openshift_health_checker/preflight/playbooks/package_version_multiple.yml
blob: 850a55a72eaeac44612831d9396cf788df8c70c5 (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
27
28
29
30
31
32
33
34
35
---
- include: ../../setup_container.yml
  vars:
    image: preflight-aos-package-checks
    l_host_vars:
      openshift_deployment_type: openshift-enterprise

- name: Fails when multiple AOS versions are available
  hosts: all
  pre_tasks:

    # run before roles to prevent openshift_version breaking
    - include: tasks/enable_repo.yml
      vars: { repo_name: "ose-3.2" }

  roles:
    - openshift_health_checker

  post_tasks:
    - block:

        # enable repo with extra minor version available
        - include: tasks/enable_repo.yml
          vars: { repo_name: "ose-3.3" }

        # disable extras so we control docker version
        - include: 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: ../../teardown_container.yml