minikube start --vm-driver none
を実行した上で
kubectl get pods
を実行すると次のエラーが発生した。
Unable to connect to the server: x509: certificate signed by unknown authority (possibly because of "crypto/rsa: verification error" while trying to verify candidate authority certificate "minikubeCA")
代わりに、下記コマンドを実行したところうまく行った。
export MINIKUBE_WANTUPDATENOTIFICATION=false export MINIKUBE_WANTREPORTERRORPROMPT=false export MINIKUBE_HOME=$HOME export CHANGE_MINIKUBE_NONE_USER=true export KUBECONFIG=$HOME/.kube/config sudo -E minikube start --vm-driver=none