123456789101112131415161718192021222324 |
- ---
- # input variables:
- # - openshift_service_type
- # - component
- # - openshift_pkg_version
- # - openshift.common.is_atomic
- # Pre-pull new node rpm, but don't install
- - name: download new node packages
- command: "{{ ansible_pkg_mgr }} install -y --downloadonly {{ 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"
- - "dnsmasq"
- # Pre-pull the rpms for openvswitch, but don't install
- # openvswitch requires the latest version to be installed.
- - name: download openvswitch upgrade rpm
- command: "{{ ansible_pkg_mgr }} update -y --downloadonly openvswitch"
- register: result
- until: result is succeeded
|