How to run?
1 - Install Istio
https://istio.io/latest/docs/setup/getting-started/#download
2 - Install Istio Addons
kubectl apply istio\addons
3 - Start Kiali
kubectl port-forward svc/kiali -n istio-system 20001
Access: http://localhost:20001/kiali
4- Build docker application images
cd ./src/
docker build . -t consumer:latest
docker build -f ServerDockerfile . -t server:latest
5 - Apply Kubernetes deploy
path: kubernetes/
cd ./kubernetes/
kubectl apply -f .\deploy-consumer.yml
kubectl apply -f .\deploy-server.yml