From a03422fc56ac36dc3ba8948c5e90fab4029467de Mon Sep 17 00:00:00 2001 From: cloud-pharaoh Date: Wed, 8 Apr 2020 16:28:28 -0700 Subject: [PATCH] Update instructions for Istio-installed GKE (#310) --- README.md | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 05093c1..fc818af 100644 --- a/README.md +++ b/README.md @@ -249,7 +249,21 @@ by deploying the [release manifest](./release) directly to an existing cluster. kubectl apply -f ./istio-manifests ``` -5. Deploy the application with `skaffold run --default-repo=gcr.io/[PROJECT_ID]`. +5. In the root of this repository, run `skaffold run --default-repo=gcr.io/[PROJECT_ID]`, + where [PROJECT_ID] is your GCP project ID. + + This command: + + - builds the container images + - pushes them to GCR + - applies the `./kubernetes-manifests` deploying the application to + Kubernetes. + + **Troubleshooting:** If you get "No space left on device" error on Google + Cloud Shell, you can build the images on Google Cloud Build: [Enable the + Cloud Build + API](https://console.cloud.google.com/flows/enableapi?apiid=cloudbuild.googleapis.com), + then run `skaffold run -p gcb --default-repo=gcr.io/[PROJECT_ID]` instead. 6. Run `kubectl get pods` to see pods are in a healthy and ready state.