cri-o reset all containers and pods (#3856)
Signed-off-by: Ganesh Maharaj Mahalingam <ganesh.mahalingam@intel.com>
This commit is contained in:
parent
e50647d252
commit
1a50a1a733
1 changed files with 30 additions and 0 deletions
|
@ -67,6 +67,17 @@
|
||||||
tags:
|
tags:
|
||||||
- docker
|
- docker
|
||||||
|
|
||||||
|
- name: reset | stop all cri-o containers
|
||||||
|
shell: "crictl ps -aq | xargs -r crictl stop"
|
||||||
|
register: remove_all_crio_containers
|
||||||
|
retries: 4
|
||||||
|
until: remove_all_crio_containers.rc == 0
|
||||||
|
delay: 5
|
||||||
|
tags:
|
||||||
|
- crio
|
||||||
|
when: container_manager == 'crio'
|
||||||
|
|
||||||
|
|
||||||
- name: reset | remove all cri-o containers
|
- name: reset | remove all cri-o containers
|
||||||
shell: "crictl ps -aq | xargs -r crictl rm"
|
shell: "crictl ps -aq | xargs -r crictl rm"
|
||||||
register: remove_all_crio_containers
|
register: remove_all_crio_containers
|
||||||
|
@ -77,6 +88,25 @@
|
||||||
- crio
|
- crio
|
||||||
when: container_manager == 'crio' and deploy_container_engine|default(true)
|
when: container_manager == 'crio' and deploy_container_engine|default(true)
|
||||||
|
|
||||||
|
- name: reset | stop all cri-o pods
|
||||||
|
shell: "crictl pods -q | xargs -r crictl stopp"
|
||||||
|
register: remove_all_crio_containers
|
||||||
|
retries: 4
|
||||||
|
until: remove_all_crio_containers.rc == 0
|
||||||
|
delay: 5
|
||||||
|
tags:
|
||||||
|
- crio
|
||||||
|
when: container_manager == 'crio'
|
||||||
|
|
||||||
|
- name: reset | remove all cri-o pods
|
||||||
|
shell: "crictl pods -q | xargs -r crictl rmp"
|
||||||
|
register: remove_all_crio_containers
|
||||||
|
retries: 4
|
||||||
|
until: remove_all_crio_containers.rc == 0
|
||||||
|
delay: 5
|
||||||
|
tags:
|
||||||
|
- crio
|
||||||
|
when: container_manager == 'crio'
|
||||||
- name: reset | gather mounted kubelet dirs
|
- name: reset | gather mounted kubelet dirs
|
||||||
shell: mount | grep /var/lib/kubelet/ | awk '{print $3}' | tac
|
shell: mount | grep /var/lib/kubelet/ | awk '{print $3}' | tac
|
||||||
args:
|
args:
|
||||||
|
|
Loading…
Reference in a new issue