Merge pull request #129317 from carlory/kubeadm-touch

kubeadm: remove preflight check for `touch` on Linux nodes.
This commit is contained in:
Kubernetes Prow Robot 2024-12-21 05:00:09 +01:00 committed by GitHub
commit 646e7f04d9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -84,7 +84,6 @@ func addExecChecks(checks []Checker, execer utilsexec.Interface, k8sVersion stri
checks = append(checks,
InPathCheck{executable: "mount", mandatory: true, exec: execer},
InPathCheck{executable: "nsenter", mandatory: true, exec: execer},
InPathCheck{executable: "touch", mandatory: false, exec: execer})
InPathCheck{executable: "nsenter", mandatory: true, exec: execer})
return checks
}