k8s-sig-cluster-lifecycleawskubesprayhigh-availabilityansiblekubernetes-clustergcekubernetesbare-metal
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
694 B
20 lines
694 B
---
|
|
- 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"]
|