You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$ kube-prompt
kube-prompt v1.0.10 (rev-43bcffa)
Please use `exit` or `Ctrl-D` to exit this program.
>>> help
/bin/sh: 1: kubectl: not found
Got error: exit status 127
>>>
The text was updated successfully, but these errors were encountered:
@frankgerhardt not sure if this still matters for you, but if anyone else ends up here you can resolve this by making a bash script that just passes all args through to minikube.
Create file kubectl
#!/bin/bash
minikube kubectl -- "$@"
chmod +x ./kubectl
sudo mv ./kubectl /usr/local/bin/kubectl
Now any programs that need kubectl will actually work (including running as root).
I don't have
kubectl
installed but usealias kubectl='minikube kubectl --'
instead as described in https://minikube.sigs.k8s.io/docs/handbook/kubectl/.Then I get this error:
The text was updated successfully, but these errors were encountered: