Merge pull request #129131 from pacoxu/kubeadm-iptables-check

kubeadm: remove iptables/ip/tc/ethtool binary preflight check
This commit is contained in:
Kubernetes Prow Robot 2024-12-14 08:14:53 +01:00 committed by GitHub
commit e818574885
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -83,12 +83,8 @@ func addExecChecks(checks []Checker, execer utilsexec.Interface, k8sVersion stri
}
checks = append(checks,
InPathCheck{executable: "ip", mandatory: true, exec: execer},
InPathCheck{executable: "iptables", mandatory: true, exec: execer},
InPathCheck{executable: "mount", mandatory: true, exec: execer},
InPathCheck{executable: "nsenter", mandatory: true, exec: execer},
InPathCheck{executable: "ethtool", mandatory: false, exec: execer},
InPathCheck{executable: "tc", mandatory: false, exec: execer},
InPathCheck{executable: "touch", mandatory: false, exec: execer})
return checks
}