package_version_multiple.yml 858 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. - import_playbook: ../../setup_container.yml
  3. vars:
  4. image: preflight-aos-package-checks
  5. l_host_vars:
  6. openshift_deployment_type: openshift-enterprise
  7. - name: Fails when multiple AOS versions are available
  8. hosts: all
  9. roles:
  10. - openshift_health_checker
  11. post_tasks:
  12. - block:
  13. # enable repo with extra minor version available
  14. - include_tasks: tasks/enable_repo.yml
  15. vars: { repo_name: "ose-3.3" }
  16. # disable extras so we control docker version
  17. - include_tasks: tasks/enable_repo.yml
  18. vars: { repo_file: "CentOS-Base", repo_name: "extras", repo_enabled: 0 }
  19. - action: openshift_health_check
  20. args:
  21. checks: [ 'package_version' ]
  22. always: # destroy the container whether check passed or not
  23. - include_tasks: ../../teardown_container.yml