March 2021
Intermediate to advanced
260 pages
5h 45m
English
This is the moment we’ve been building up to over the course of the book: deploying our distributed service to the cloud. Run the following command:
| | $ helm install proglog proglog \ |
| | --set image.repository=gcr.io/$PROJECT_ID/proglog \ |
| | --set service.lb=true |
This command installs our proglog chart to our GKE cluster. We’ve set the image repository to configure the StatefulSet to pull the image from the Google Container Registry. And we’ve enabled the service-per-pod controller. You can watch as the services come up by passing the -w flag:
| | $ kubectl get services -w |
When all three load balancers are up, we can verify that our client connects to our service running in the cloud and that our service nodes discovered each ...
Read now
Unlock full access