From 5f9a6d3e5780418600609c54813d4e799d6658fc Mon Sep 17 00:00:00 2001 From: Sascha Grunert Date: Thu, 5 Sep 2024 15:14:47 +0200 Subject: [PATCH] Remove `socat` and `ebtables` from kubeadm preflight checks Follow-up on https://github.com/kubernetes/release/pull/3722 Signed-off-by: Sascha Grunert --- cmd/kubeadm/app/preflight/checks_linux.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/cmd/kubeadm/app/preflight/checks_linux.go b/cmd/kubeadm/app/preflight/checks_linux.go index 07b770050f2..b7bea8fff77 100644 --- a/cmd/kubeadm/app/preflight/checks_linux.go +++ b/cmd/kubeadm/app/preflight/checks_linux.go @@ -79,9 +79,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