Skip to content

Google GKE Cluster Setup#

This guide covers the prerequisites and cluster creation specific to Google Kubernetes Engine (GKE).

Prerequisites#

  1. Enable GKE API if not enabled yet.

  2. If you are using Cloud Shell, skip to step 5.

  3. Install gcloud CLI.

  4. Install kubectl:

gcloud components install kubectl
  1. Install Helm3.

Create the GKE Cluster#

gcloud container clusters create janssen-cluster --num-nodes 2 --machine-type e2-standard-4 --zone us-west1-a

Adjust num-nodes and machine-type as per your desired cluster size.

Create the Janssen Namespace#

kubectl create namespace jans

Next Steps#

Proceed to Ingress Setup to configure traffic routing.