Merge pull request #126596 from saschagrunert/checks

kubeadm: don't warn if `crictl` binary does not exist
This commit is contained in:
Kubernetes Prow Robot
2024-08-13 22:11:48 -07:00
committed by GitHub

View File

@@ -74,7 +74,6 @@ func addSwapCheck(checks []Checker) []Checker {
// addExecChecks adds checks that verify if certain binaries are in PATH
func addExecChecks(checks []Checker, execer utilsexec.Interface) []Checker {
checks = append(checks,
InPathCheck{executable: "crictl", mandatory: false, exec: execer},
InPathCheck{executable: "conntrack", mandatory: true, exec: execer},
InPathCheck{executable: "ip", mandatory: true, exec: execer},
InPathCheck{executable: "iptables", mandatory: true, exec: execer},