- Start Docker Desktop application
- Run
minikube start
- In a new terminal run
sudo minikube tunnel
root privilege are needed for protected ports 80, 443 - Run
minikube addons enable ingress
- Run
kubectl apply -k apps/environments/dev/
- Wait for ingress address, check using
kubectl get ing -A
- Run
curl 127.0.0.1
- In a new terminal run
kubectl port-forward service/postgres-service 5432:5432 -n dev
- Run
psql -h 127.0.0.1 -p 5432 -U myuser -d mydatabase