rpm_upgrade.yml 1.4 KB

123456789101112131415161718192021222324252627282930313233343536
  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. - import_tasks: ../static.yml
  11. - name: Upgrade master packages
  12. command:
  13. yum install -y {{ master_pkgs | join(' ') }} \
  14. {{ ' --exclude *' ~ openshift_service_type ~ '*3.9*' if openshift_release | version_compare('3.9','<') else '' }}
  15. vars:
  16. master_pkgs:
  17. - "{{ openshift_service_type }}-node{{ openshift_pkg_version | default('') }}"
  18. - "{{ openshift_service_type }}-clients{{ openshift_pkg_version | default('') }}"
  19. register: result
  20. until: result is succeeded
  21. when: ansible_pkg_mgr == 'yum'
  22. - name: Upgrade master packages - dnf
  23. dnf:
  24. name: "{{ master_pkgs | join(',') }}"
  25. state: present
  26. vars:
  27. master_pkgs:
  28. - "{{ openshift_service_type }}-node{{ openshift_pkg_version }}"
  29. - "{{ openshift_service_type }}-clients{{ openshift_pkg_version }}"
  30. register: result
  31. until: result is succeeded
  32. when: ansible_pkg_mgr == 'dnf'