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 <dpac.gdm@gmail.com>
This commit is contained in:
dpacgdm
2026-07-13 10:44:14 +05:30
parent 97d58d2cb5
commit 43702a7424
2 changed files with 2 additions and 1 deletions
+1
View File
@@ -25,6 +25,7 @@
"--component=cri",
"--enable-repair=true",
"--cooldown-time=2m",
"--cri-timeout=10s",
"--health-check-timeout=60s"
],
"timeout": "3m"
@@ -25,10 +25,10 @@
"--component=cri",
"--enable-repair=true",
"--cooldown-time=2m",
"--cri-timeout=10s",
"--health-check-timeout=60s"
],
"timeout": "3m"
}
]
}