package_version_matches.yml 745 B

1234567891011121314151617181920212223242526
  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. openshift_release: 3.2
  8. - name: Success when AOS version matches openshift_release
  9. hosts: all
  10. roles:
  11. - openshift_health_checker
  12. post_tasks:
  13. - block:
  14. # disable extras so we control docker version
  15. - include_tasks: tasks/enable_repo.yml
  16. vars: { repo_file: "CentOS-Base", repo_name: "extras", repo_enabled: 0 }
  17. - action: openshift_health_check
  18. args:
  19. checks: [ 'package_version' ]
  20. always: # destroy the container whether check passed or not
  21. - include_tasks: ../../teardown_container.yml