|
@@ -22,19 +22,24 @@
|
|
|
|
|
|
- name: Ensure cri-o is updated
|
|
- name: Ensure cri-o is updated
|
|
package:
|
|
package:
|
|
- name: cri-o
|
|
|
|
|
|
+ name: "{{ crio_pkgs | join (',') }}"
|
|
state: latest
|
|
state: latest
|
|
when:
|
|
when:
|
|
- openshift_use_crio | default(False)
|
|
- openshift_use_crio | default(False)
|
|
register: crio_update
|
|
register: crio_update
|
|
|
|
+ vars:
|
|
|
|
+ crio_pkgs:
|
|
|
|
+ - "cri-o"
|
|
|
|
+ - "cri-tools"
|
|
|
|
|
|
-- name: Restart cri-o
|
|
|
|
- systemd:
|
|
|
|
- name: cri-o
|
|
|
|
- state: restarted
|
|
|
|
- when:
|
|
|
|
- - openshift_use_crio | default(False)
|
|
|
|
- - crio_update is changed
|
|
|
|
|
|
+- name: Remove CRI-O default configuration files
|
|
|
|
+ file:
|
|
|
|
+ path: "{{ item }}"
|
|
|
|
+ state: absent
|
|
|
|
+ with_items:
|
|
|
|
+ - "/etc/cni/net.d/200-loopback.conf"
|
|
|
|
+ - "/etc/cni/net.d/100-crio-bridge.conf"
|
|
|
|
+ when: crio_update | changed
|
|
|
|
|
|
- name: install pre-pulled rpms.
|
|
- name: install pre-pulled rpms.
|
|
import_tasks: upgrade/rpm_upgrade_install.yml
|
|
import_tasks: upgrade/rpm_upgrade_install.yml
|