I am facing lot of issue to start minikube on Amazon EC2 Ubuntu 20.04 in order to set-up kubernates. Initially I was getting below issue related crictl when i run the command minikube start --vm-driver=none
Somehow I was able to resolve the above issue by installing crictl and adding path to user/bin. Now when I run this command again minikube start --vm-driver=none
then I am getting the below issue
I also try this command to start minikube but result are same minikube start --driver=none
Below are the step which I follow to set-up minikubes
- first i install kubetcl and set path curl -LO https://storage.googleapis.com/kubernetes-release/release/$(curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt)/bin/linux/amd64/kubectl && chmod +x ./kubectl && sudo mv ./kubectl /usr/local/bin/kubectl
- then minikube curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectl&& chmod +x kubectl && sudo mv kubectl /usr/local/bin/
- After that i install conntrack
- then did update everything apt-get update -y
- I run this command
minikube start --vm-driver=none