A simple kubernetes cluste for learning, running on minikube
minikube start
minikube stop
minikube addons enable registry
minikube addons enable ingress
Configure terminal to use the docker daemon/repo inside minikube (more reading: https://minikube.sigs.k8s.io/docs/handbook/pushing/)
eval $(minikube docker-env)
docker build . -t wachmann.dev/http-test-service
kubectl config use-context minikube
kubectl apply -f ./k8s
minikube ip
the local /etc/hosts file should have been edited to point http-test-service.info to the minikube ip
192.168.64.3 http-test-service.info
curl http-test-service.info