Merge pull request #127413 from saschagrunert/automated-cherry-pick-of-#127151-base-release-1.31

Automated cherry pick of #127151: Remove `socat` and `ebtables` from kubeadm preflight checks
This commit is contained in:
Kubernetes Prow Robot 2024-09-18 09:36:46 +01:00 committed by GitHub
commit aae6745a67
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -80,9 +80,7 @@ func addExecChecks(checks []Checker, execer utilsexec.Interface) []Checker {
InPathCheck{executable: "iptables", mandatory: true, exec: execer},
InPathCheck{executable: "mount", mandatory: true, exec: execer},
InPathCheck{executable: "nsenter", mandatory: true, exec: execer},
InPathCheck{executable: "ebtables", mandatory: false, exec: execer},
InPathCheck{executable: "ethtool", mandatory: false, exec: execer},
InPathCheck{executable: "socat", mandatory: false, exec: execer},
InPathCheck{executable: "tc", mandatory: false, exec: execer},
InPathCheck{executable: "touch", mandatory: false, exec: execer})
return checks