Skip to content

Commit d850fb6

Browse files
committed
kubeadm: don't warn if crictl binary does not exist
kubeadm does not rely on `crictl` any more, so we can now drop the warning in 1.32 as outlined in: kubernetes/kubeadm#3064 Signed-off-by: Sascha Grunert <[email protected]>
1 parent 60c4c2b commit d850fb6

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

cmd/kubeadm/app/preflight/checks_linux.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,6 @@ func addSwapCheck(checks []Checker) []Checker {
7474
// addExecChecks adds checks that verify if certain binaries are in PATH
7575
func addExecChecks(checks []Checker, execer utilsexec.Interface) []Checker {
7676
checks = append(checks,
77-
InPathCheck{executable: "crictl", mandatory: false, exec: execer},
7877
InPathCheck{executable: "conntrack", mandatory: true, exec: execer},
7978
InPathCheck{executable: "ip", mandatory: true, exec: execer},
8079
InPathCheck{executable: "iptables", mandatory: true, exec: execer},

0 commit comments

Comments
 (0)