rpm_upgrade_install.yml 642 B

12345678910111213141516171819
  1. ---
  2. # input variables:
  3. # - openshift_service_type
  4. # - component
  5. # - openshift_pkg_version
  6. # - openshift.common.is_atomic
  7. # Install the pre-pulled RPM
  8. # Note: dnsmasq is covered in it's own play. openvswitch is included here
  9. # because once we have the latest rpm downloaded, it will happily be installed.
  10. - name: download new node packages
  11. command: "{{ ansible_pkg_mgr }} install -C -y {{ openshift_node_upgrade_rpm_list | join(' ')}}"
  12. register: result
  13. until: result is succeeded
  14. vars:
  15. openshift_node_upgrade_rpm_list:
  16. - "{{ openshift_service_type }}-node{{ openshift_pkg_version }}"
  17. - "PyYAML"
  18. - "openvswitch"