From 5e91433c7fcd23f55df2e64e903183bc6fbf4f2c Mon Sep 17 00:00:00 2001 From: Brendan O'Leary Date: Wed, 30 May 2018 13:32:17 -0400 Subject: [PATCH 1/2] Change to start from script folder. Without that you get an error about './common.sh' --- doc/cloud/gke.md | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/cloud/gke.md b/doc/cloud/gke.md index 998844d7b9..c0fb98259a 100644 --- a/doc/cloud/gke.md +++ b/doc/cloud/gke.md @@ -37,16 +37,18 @@ The table below describes all variables. [GKE release notes]: https://cloud.google.com/kubernetes-engine/release-notes -Run the script, passing in your desired parameters. (The script can work with default parameters except for `PROJECT` which is required.) +From the /scripts directory, run the script, passing in your desired parameters. (The script can work with default parameters except for `PROJECT` which is required.) ```bash -PROJECT= ./scripts/gke_bootstrap_script.sh up +cd ./scripts +PROJECT= ./gke_bootstrap_script.sh up ``` The script can also be used to clean up the created GKE resources by running ```bash -PROJECT= ./scripts/gke_bootstrap_script.sh down +cd ./scripts +PROJECT= ./gke_bootstrap_script.sh down ``` With the cluster created, continue to [creating the DNS entry](#dns-entry). -- GitLab From 2e7633d9a7cd1dbea9f9d0104d6efaf04edc57bf Mon Sep 17 00:00:00 2001 From: Brendan O'Leary Date: Wed, 30 May 2018 13:35:39 -0400 Subject: [PATCH 2/2] Next step is deployment --- doc/cloud/gke.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/cloud/gke.md b/doc/cloud/gke.md index c0fb98259a..897c38a0f7 100644 --- a/doc/cloud/gke.md +++ b/doc/cloud/gke.md @@ -89,4 +89,4 @@ Follow [This](https://cloud.google.com/dns/quickstart) to create the DNS entry. # Next Steps -Continue with the [installation of the chart](../installation/README.md) once you have the cluster up and running, and have the static IP and DNS entry ready. +Continue with the [deployment of the chart](../installation/deployment.md) once you have the cluster up and running, and have the static IP and DNS entry ready. -- GitLab