package_version_mismatches.yml 920 B

1234567891011121314151617181920212223242526272829
  1. ---
  2. # NOTE: this test is probably superfluous since openshift_version already does it
  3. - import_playbook: ../../setup_container.yml
  4. vars:
  5. image: preflight-aos-package-checks
  6. l_host_vars:
  7. openshift_deployment_type: openshift-enterprise
  8. openshift_release: 3.2
  9. - name: Failure when AOS version doesn't match openshift_release
  10. hosts: all
  11. roles:
  12. - openshift_health_checker
  13. post_tasks:
  14. - block:
  15. # put the repo back to disabled
  16. - include_tasks: tasks/enable_repo.yml
  17. vars: { repo_name: "ose-3.2", repo_enabled: 0 }
  18. # test with wrong repo enabled
  19. - include_tasks: tasks/enable_repo.yml
  20. vars: { repo_name: "ose-3.3" }
  21. - action: openshift_health_check
  22. args:
  23. checks: [ 'package_version' ]
  24. always: # destroy the container whether check passed or not
  25. - include_tasks: ../../teardown_container.yml