Remove socat and ebtables from kubeadm preflight checks

Follow-up on https://github.com/kubernetes/release/pull/3722

Signed-off-by: Sascha Grunert <sgrunert@redhat.com>
This commit is contained in:
Sascha Grunert 2024-09-05 15:14:47 +02:00
parent 1f7b707f26
commit e7090a9b9b
No known key found for this signature in database
GPG Key ID: 09D97D153EF94D93

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