12345678910111213141516171819 |
- ---
- # input variables:
- # - openshift_service_type
- # - component
- # - openshift_pkg_version
- # - openshift.common.is_atomic
- # Install the pre-pulled RPM
- # Note: dnsmasq is covered in it's own play. openvswitch is included here
- # because once we have the latest rpm downloaded, it will happily be installed.
- - name: download new node packages
- command: "{{ ansible_pkg_mgr }} install -C -y {{ openshift_node_upgrade_rpm_list | join(' ')}}"
- register: result
- until: result is succeeded
- vars:
- openshift_node_upgrade_rpm_list:
- - "{{ openshift_service_type }}-node{{ openshift_pkg_version }}"
- - "PyYAML"
- - "openvswitch"
|