summaryrefslogtreecommitdiffstats
path: root/test/integration/openshift_health_checker/preflight/playbooks/package_availability_missing_required.yml
blob: 451ac0972951b3307ea07335a9513b5e5a529168 (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
---
# NOTE: this test is probably superfluous since openshift_version already does it
- import_playbook: ../../setup_container.yml
  vars:
    image: preflight-aos-package-checks
    l_host_vars:
      openshift_deployment_type: openshift-enterprise

- name: Fail as required packages cannot be installed
  hosts: all
  roles:
    - openshift_health_checker

  post_tasks:
    - block:

        # put the repo back to disabled
        - include_tasks: tasks/enable_repo.yml
          vars: { repo_name: "ose-3.2", repo_enabled: 0 }

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

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