Your Web News in One Place

Help Webnuz

Referal links:

Sign up for GreenGeeks web hosting
June 11, 2022 01:28 pm GMT

Install Minikube on your Ubuntu 18.04(AWS)

Step1.Lanuch EC2 Instance

Image description

1.Choose Image(Ubuntu 18.04)

Image description

2.Choose Instance Type(T3.medium)

Image description

3.Add Storage(Least 10GiB)

Image description

4.Add Tags(Options)

Image description

5.Add SecurityGroup

Image description

6.Check and lanuch

Image description

7.View Your Instance

Image description

Step2.Login into your Instance

1.Open SecureCRT Connect Tool

Image description

2.Add .PEM key

Image description
Image description

3.Login use ubuntu User

Image description
Image description

Step3.Install Kubectl(Use ubuntu User)

curl -LO https://storage.googleapis.com/kubernetes-release/release/`curl -s https://storage.googleapis.com/kubernetes-release/release/stable.txt`/bin/linux/amd64/kubectlchmod +x ./kubectlsudo mv ./kubectl /usr/local/bin/kubectl

Image description

Step4.Install Docker(Use ubuntu User)

sudo apt-get update && sudo apt-get install docker.io -ysudo systemctl start docker

Image description

Step5.Install and check Minikube

1.Install conntrack(Root User)

sudo -iapt install conntrack

Image description

2.Install Minikube

curl -Lo minikube https://storage.googleapis.com/minikube/releases/latest/minikube-linux-amd64 && chmod +x minikube && sudo mv minikube /usr/local/bin/

Image description

Step6.Start and check Minikube

minikube start --vm-driver=noneminikube status

Image description
Image description


Original Link: https://dev.to/leifengflying/install-minikube-on-your-ubuntu-1804aws-5hnh

Share this article:    Share on Facebook
View Full Article

Dev To

An online community for sharing and discovering great ideas, having debates, and making friends

More About this Source Visit Dev To