Google GKE Cluster Setup#
This guide covers the prerequisites and cluster creation specific to Google Kubernetes Engine (GKE).
Prerequisites#
-
Enable GKE API if not enabled yet.
-
If you are using Cloud Shell, skip to step 5.
-
Install gcloud CLI.
-
Install kubectl:
gcloud components install kubectl
- 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.