My Kubernetes Recipee with Minikube

·
1 min read
notes
#fedora #minikube #kvm

How to install Kubernetes

This is a continuation from previous post

Running The Command

I’m on the AMD Zen machine, can allocate more CPUs.

Terminal window
minikube start --driver=kvm2 --memory=12000 --cpus=4

Let’s set the Docker registry to minikube’s

Terminal window
eval $(minikube docker-env)

Now we can build our products straight to Minikube!

Terminal window
docker build -t myapp/simulator:v0.0.1 .