rpm_upgrade.yml 1.2 KB

123456789101112131415161718192021222324252627
  1. ---
  2. # input variables:
  3. # - openshift_service_type
  4. # - component
  5. # - openshift_pkg_version
  6. # - openshift_is_atomic
  7. # When we update package "a-${version}" and a requires b >= ${version} if we
  8. # don't specify the version of b yum will choose the latest version of b
  9. # available and the whole set of dependencies end up at the latest version.
  10. # Since the package module, unlike the yum module, doesn't flatten a list
  11. # of packages into one transaction we need to do that explicitly. The ansible
  12. # core team tells us not to rely on yum module transaction flattening anyway.
  13. # Pre-pull new node rpm, but don't install
  14. - name: download new node packages
  15. command: "{{ ansible_pkg_mgr }} install -y --downloadonly {{ openshift_node_upgrade_rpm_list | join(' ')}}"
  16. register: result
  17. until: result is succeeded
  18. failed_when:
  19. - result.stdout is search(".*No package .* available.*") or result is failed
  20. vars:
  21. openshift_node_upgrade_rpm_list:
  22. - "{{ openshift_service_type }}{{ openshift_pkg_version }}"
  23. - "{{ openshift_service_type }}-hyperkube{{ openshift_pkg_version }}"
  24. - "{{ openshift_service_type }}-node{{ openshift_pkg_version }}"
  25. - "{{ openshift_service_type }}-clients{{ openshift_pkg_version }}"