AWS Image for Kubernetes AWS Image for Kubernetes kubernetes kubernetes

AWS Image for Kubernetes


I'll help you to install and run your Minikube installation inside your AWS.

It's recommended to follow this steps to install your instance, don't look for a pre-installed image.

I'm considering you already have an Ubuntu/Debian instance with at least 4GB RAM and 2vCPU. (If you plan on running Prometheus or other resource-hungry component I recomend 8GB RAM at least)

SSH into your instance and follow this 5 steps:

1. Install kubectl:

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 ./kubectlsudo mv ./kubectl /usr/local/bin/kubectl

2. Install Docker:

sudo apt-get update && sudo apt-get install docker.io -y

3. Install Minikube:

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

4. Check Minikube Version:

minikube version

5. Start Minikube:

minikube start --vm-driver=none

And check status with minikube status.

If you screw up your minikube, just type minikube delete and the whole cluster will be trashed, thus you can minikube start --vm-driver=none and start over again.

Keep in mind that Minikube is purposed for learning, developing and testing purposes.

More info at: https://kubernetes.io/docs/search/?q=minikube