From 43702a74242a5fe21e0a268587be0b6552e2d702 Mon Sep 17 00:00:00 2001 From: dpacgdm Date: Mon, 13 Jul 2026 10:44:14 +0530 Subject: [PATCH] config: include --cri-timeout in containerd health-checker defaults The health-checker binary honors --cri-timeout when passed via custom plugin rule args. The default containerd configs omitted the flag, so crictl used the 2s built-in default. Add --cri-timeout=10s to the sample Linux and Windows containerd configs. Signed-off-by: dpacgdm --- config/health-checker-containerd.json | 1 + config/windows-health-checker-containerd.json | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/config/health-checker-containerd.json b/config/health-checker-containerd.json index a6fe0b95e..4e890f85c 100644 --- a/config/health-checker-containerd.json +++ b/config/health-checker-containerd.json @@ -25,6 +25,7 @@ "--component=cri", "--enable-repair=true", "--cooldown-time=2m", + "--cri-timeout=10s", "--health-check-timeout=60s" ], "timeout": "3m" diff --git a/config/windows-health-checker-containerd.json b/config/windows-health-checker-containerd.json index 329e1a66e..7f82ab1e9 100644 --- a/config/windows-health-checker-containerd.json +++ b/config/windows-health-checker-containerd.json @@ -25,10 +25,10 @@ "--component=cri", "--enable-repair=true", "--cooldown-time=2m", + "--cri-timeout=10s", "--health-check-timeout=60s" ], "timeout": "3m" } ] } - \ No newline at end of file