Skip to content
Snippets Groups Projects
Commit 94d4ce5a authored by Matthew Mosesohn's avatar Matthew Mosesohn Committed by Kubernetes Prow Robot
Browse files

Retry cleaning up calico-node container (#5302)

Change-Id: Iad27b107860213759c7ae51f0891d7e5e7c6d96b
parent 81da231b
No related branches found
No related tags found
No related merge requests found
......@@ -13,10 +13,16 @@
- name: docker | delete calico-node containers
shell: "docker ps -af name=k8s_POD_calico-node* -q | xargs --no-run-if-empty docker rm -f"
register: docker_calico_node_remove
until: docker_calico_node_remove is succeeded
retries: 5
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 %"'
register: crictl_calico_node_remove
until: crictl_calico_node_remove is succeeded
retries: 5
when: container_manager in ["crio", "containerd"]
- name: Calico | Reload NetworkManager
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment