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

- name: Fails when repo content is not available
  hosts: all
  roles:
    - openshift_health_checker

  post_tasks:
    - block:

        - include_tasks: tasks/enable_repo.yml
          vars: { repo_name: "break-yum" }

        - name: Remove the local repo entirely
          file: path=/mnt/localrepo state=absent

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

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