docker compose up -d --build
docker compose down
We use the local cluster management system minikube (https://minikube.sigs.k8s.io/docs/)
minikube start
minikube image load books-rest-api:latest
minikube image load books-api-client:latest
kubectl apply -f https://projectcontour.io/quickstart/contour.yaml
kubectl get -n projectcontour service envoy -o wide
Fetch contour external address from EXTERNAL-IP column
<contour external address> booksserver
kubectl apply -f .
kubectl get deployments
kubectl port-forward service/booksapp 4100:4100
kubectl apply -f https://projectcontour.io/quickstart/contour.yaml
kubectl delete -f .
minikube stop