Skip to content
Snippets Groups Projects
Commit 86d49b1b authored by Liz Rice's avatar Liz Rice
Browse files

We don’t care whether the binaries are in our path or not, just whether they are running

parent 7c7d477d
No related branches found
No related tags found
No related merge requests found
...@@ -113,11 +113,6 @@ func verifyBin(binPath ...string) { ...@@ -113,11 +113,6 @@ func verifyBin(binPath ...string) {
} }
} }
if len(missing) > 0 {
missing = strings.Trim(missing, ", ")
printlnWarn(fmt.Sprintf("Missing kubernetes binaries: %s", missing))
}
if len(notRunning) > 0 { if len(notRunning) > 0 {
notRunning = strings.Trim(notRunning, ", ") notRunning = strings.Trim(notRunning, ", ")
printlnWarn(fmt.Sprintf("Kubernetes binaries not running: %s", notRunning)) printlnWarn(fmt.Sprintf("Kubernetes binaries not running: %s", notRunning))
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment