428e52e0d1
crictl tool must be used to delete containers in case of containerd deployment
20 lines
694 B
YAML
20 lines
694 B
YAML
---
|
|
- name: reset_calico_cni
|
|
command: /bin/true
|
|
notify:
|
|
- delete 10-calico.conflist
|
|
- docker | delete calico-node containers
|
|
- containerd | delete calico-node containers
|
|
|
|
- name: delete 10-calico.conflist
|
|
file:
|
|
path: /etc/cni/net.d/10-calico.conflist
|
|
state: absent
|
|
|
|
- name: docker | delete calico-node containers
|
|
shell: "docker ps -af name=k8s_POD_calico-node* -q | xargs --no-run-if-empty docker rm -f"
|
|
when: container_manager in ["docker"]
|
|
|
|
- name: containerd | delete calico-node containers
|
|
shell: 'crictl pods --name calico-node-* -q | xargs -I% --no-run-if-empty bash -c "crictl stopp % && crictl rmp %"'
|
|
when: container_manager in ["crio", "containerd"]
|