From a116c8d3f5f8080b22f92e008be0337c08fe60b3 Mon Sep 17 00:00:00 2001 From: Shivam Kumar Singh Date: Thu, 19 Aug 2021 15:02:29 +0530 Subject: [PATCH] Updated Quick Start doc to include GCP env variables --- docs/book/src/user/quick-start.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/docs/book/src/user/quick-start.md b/docs/book/src/user/quick-start.md index 197f1531a3b9..c748e1849ad2 100644 --- a/docs/book/src/user/quick-start.md +++ b/docs/book/src/user/quick-start.md @@ -463,6 +463,19 @@ export SERVICE_DOMAIN="k8s.test" {{#/tab }} {{#tab GCP}} + +```bash +# Name of the GCP datacenter location. Change this value to your desired location +export GCP_REGION="" +export GCP_PROJECT="" +# Make sure to use same kubernetes version here as building the GCE image +export KUBERNETES_VERSION=1.20.9 +export GCP_CONTROL_PLANE_MACHINE_TYPE=n1-standard-2 +export GCP_NODE_MACHINE_TYPE=n1-standard-2 +export GCP_NETWORK_NAME= +export CLUSTER_NAME="" +``` + See the [GCP provider] for more information. {{#/tab }}