From d94490f5b072d0b651b35f3dafde5e8937fc3b6c Mon Sep 17 00:00:00 2001 From: Peter Hunt Date: Tue, 9 Feb 2021 15:14:50 -0500 Subject: [PATCH] config/node: allow CRI-O to start if fs_may_detach_mounts is not set unfortunately, it's possible CRI-O races with the sysctl being set, causing it to fail to start even if the sysctl is correctly set. instead, don't fatally error if it's not. Signed-off-by: Peter Hunt --- internal/config/node/node.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/config/node/node.go b/internal/config/node/node.go index 63a3595de08..920e2ac38c0 100644 --- a/internal/config/node/node.go +++ b/internal/config/node/node.go @@ -60,7 +60,7 @@ func ValidateConfig() error { init: checkFsMayDetachMounts, err: &checkFsMayDetachMountsErr, activated: nil, - fatal: true, + fatal: false, }, } for _, i := range toInit {