rpm_upgrade.yml 785 B

123456789101112131415161718192021222324
  1. ---
  2. # input variables:
  3. # - openshift_service_type
  4. # - component
  5. # - openshift_pkg_version
  6. # - openshift.common.is_atomic
  7. # Pre-pull new node rpm, but don't install
  8. - name: download new node packages
  9. command: "{{ ansible_pkg_mgr }} install -y --downloadonly {{ openshift_node_upgrade_rpm_list | join(' ')}}"
  10. register: result
  11. until: result is succeeded
  12. vars:
  13. openshift_node_upgrade_rpm_list:
  14. - "{{ openshift_service_type }}-node{{ openshift_pkg_version }}"
  15. - "PyYAML"
  16. - "dnsmasq"
  17. # Pre-pull the rpms for openvswitch, but don't install
  18. # openvswitch requires the latest version to be installed.
  19. - name: download openvswitch upgrade rpm
  20. command: "{{ ansible_pkg_mgr }} update -y --downloadonly openvswitch"
  21. register: result
  22. until: result is succeeded