crictl allow setting grace period for stop containers upon reset (#10651)
* crictl allow setting different grace period for stop containers and pods * correct grace period locationpull/10679/head
parent
a45a40a398
commit
3e7b568d3e
|
@ -16,3 +16,6 @@ reset_restart_network_service_name: >-
|
|||
{%- elif ansible_os_family == "Debian" -%}
|
||||
networking
|
||||
{%- endif %}
|
||||
|
||||
# crictl stop container grace period
|
||||
cri_stop_containers_grace_period: 0
|
||||
|
|
|
@ -52,7 +52,7 @@
|
|||
register: crictl
|
||||
|
||||
- name: Reset | stop all cri containers
|
||||
shell: "set -o pipefail && {{ bin_dir }}/crictl ps -q | xargs -r {{ bin_dir }}/crictl -t 60s stop"
|
||||
shell: "set -o pipefail && {{ bin_dir }}/crictl ps -q | xargs -r {{ bin_dir }}/crictl -t 60s stop -t {{ cri_stop_containers_grace_period }}"
|
||||
args:
|
||||
executable: /bin/bash
|
||||
register: remove_all_cri_containers
|
||||
|
|
Loading…
Reference in New Issue