Quantcast
Channel: Active questions tagged ubuntu - Stack Overflow
Viewing all articles
Browse latest Browse all 5956

Facing multiple issue when I try to start on minikube on Amazon EC2 Ubuntu 20.04

$
0
0

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

enter image description here

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 issueenter image description here

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

  1. 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
  2. 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/
  3. After that i install conntrack
  4. then did update everything apt-get update -y
  5. I run this command minikube start --vm-driver=none

Viewing all articles
Browse latest Browse all 5956

Trending Articles