masters_and_nodes.yml 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. ---
  2. # These tasks should only be run against masters and nodes
  3. - block:
  4. - name: Check openshift_version for rpm installation
  5. include_tasks: check_available_rpms.yml
  6. - name: Fail if rpm version and docker image version are different
  7. fail:
  8. msg: "OCP rpm version {{ rpm_results.results.versions.available_versions.0 }} is different from OCP image version {{ openshift_version }}"
  9. # Both versions have the same string representation
  10. when:
  11. - openshift_version not in rpm_results.results.versions.available_versions.0
  12. - openshift_version_reinit | default(false)
  13. # block when
  14. when: not openshift_is_atomic | bool
  15. # We can't map an openshift_release to full rpm version like we can with containers; make sure
  16. # the rpm version we looked up matches the release requested and error out if not.
  17. - name: For an RPM install, abort when the release requested does not match the available version.
  18. when:
  19. - not openshift_is_containerized | bool
  20. - openshift_release is defined
  21. assert:
  22. that:
  23. - l_rpm_version.startswith(openshift_release) | bool
  24. msg: |-
  25. You requested openshift_release {{ openshift_release }}, which is not matched by
  26. the latest OpenShift RPM we detected as {{ openshift_service_type }}-{{ l_rpm_version }}
  27. on host {{ inventory_hostname }}.
  28. We will only install the latest RPMs, so please ensure you are getting the release
  29. you expect. You may need to adjust your Ansible inventory, modify the repositories
  30. available on the host, or run the appropriate OpenShift upgrade playbook.
  31. vars:
  32. l_rpm_version: "{{ rpm_results.results.versions.available_versions.0 }}"
  33. # The end result of these three variables is quite important so make sure they are displayed and logged:
  34. - debug: var=openshift_release
  35. - debug: var=openshift_image_tag
  36. - debug: var=openshift_pkg_version