rpm_upgrade.yml 1.1 KB

12345678910111213141516171819202122
  1. ---
  2. # When we update package "a-${version}" and a requires b >= ${version} if we
  3. # don't specify the version of b yum will choose the latest version of b
  4. # available and the whole set of dependencies end up at the latest version.
  5. # Since the package module, unlike the yum module, doesn't flatten a list
  6. # of packages into one transaction we need to do that explicitly. The ansible
  7. # core team tells us not to rely on yum module transaction flattening anyway.
  8. # TODO: If the sdn package isn't already installed this will install it, we
  9. # should fix that
  10. - name: Upgrade master packages
  11. package: name={{ master_pkgs | join(',') }} state=present
  12. vars:
  13. master_pkgs:
  14. - "{{ openshift_service_type }}{{ openshift_pkg_version }}"
  15. - "{{ openshift_service_type }}-master{{ openshift_pkg_version }}"
  16. - "{{ openshift_service_type }}-node{{ openshift_pkg_version }}"
  17. - "{{ openshift_service_type }}-sdn-ovs{{ openshift_pkg_version }}"
  18. - "{{ openshift_service_type }}-clients{{ openshift_pkg_version }}"
  19. - "tuned-profiles-{{ openshift_service_type }}-node{{ openshift_pkg_version }}"
  20. register: result
  21. until: result is succeeded