verify_inventory_vars.yml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637
  1. ---
  2. - name: Verify upgrade can proceed on first master
  3. hosts: oo_first_master
  4. gather_facts: no
  5. tasks:
  6. - fail:
  7. msg: >
  8. This upgrade is only supported for origin and openshift-enterprise
  9. deployment types
  10. when: deployment_type not in ['origin','openshift-enterprise']
  11. # Error out in situations where the user has older versions specified in their
  12. # inventory in any of the openshift_release, openshift_image_tag, and
  13. # openshift_pkg_version variables. These must be removed or updated to proceed
  14. # with upgrade.
  15. # TODO: Should we block if you're *over* the next major release version as well?
  16. - fail:
  17. msg: >
  18. openshift_pkg_version is {{ openshift_pkg_version }} which is not a
  19. valid version for a {{ openshift_upgrade_target }} upgrade
  20. when: openshift_pkg_version is defined and openshift_pkg_version.split('-',1).1 | version_compare(openshift_upgrade_target ,'<')
  21. - fail:
  22. msg: >
  23. openshift_image_tag is {{ openshift_image_tag }} which is not a
  24. valid version for a {{ openshift_upgrade_target }} upgrade
  25. when: openshift_image_tag is defined and openshift_image_tag.split('v',1).1 | version_compare(openshift_upgrade_target ,'<')
  26. - set_fact:
  27. openshift_release: "{{ openshift_release[1:] }}"
  28. when: openshift_release is defined and openshift_release[0] == 'v'
  29. - fail:
  30. msg: >
  31. openshift_release is {{ openshift_release }} which is not a
  32. valid release for a {{ openshift_upgrade_target }} upgrade
  33. when: openshift_release is defined and not openshift_release | version_compare(openshift_upgrade_target ,'=')