Lab 3 - Expose the Service Mesh with Istio Ingress Gateway
Last updated
Last updated
The components deployed on the service mesh by default are not exposed outside the cluster. External access to individual services so far has been provided by creating an external load balancer or node port on each service.
An Ingress Gateway resource can be created to allow external requests through the Istio Ingress Gateway to the backing services.
Configure the guestbook default route with the Istio Ingress Gateway. The guestbook-gateway.yaml
file is in this repository (istio101) in the workshop/plans
directory.
Get the EXTERNAL-IP of the Istio Ingress Gateway.
Output:
Make note of the external IP address that you retrieved in the previous step, as it will be used to access the Guestbook app in later parts of the course. Create an environment variable called $INGRESS_IP with your IP address.
Example:
Remember this environment variable as we will use it in the next lab.