September 2019
Intermediate to advanced
668 pages
15h 59m
English
The scripts used to deploy microservices in Kubernetes, deploy-dev-env.bash and deploy-prod-env.bash, both in the kubernetes/scripts folder, have been updated to inject Istio proxies into the five microservices, that is, the auth-server, product-composite, product, recommendation, and review services.
The deploy-prod-env.bash script will be used in the Performing zero downtime deploys section.
The istioctl kube-inject command previously described in the Injecting Istio proxies in existing microservices section has been added to both deployment scripts as follows:
kubectl get deployment auth-server product product-composite recommendation review -o yaml | istioctl kube-inject -f - ...