Files
open-match/docs/gcloud.md

1.1 KiB

Create a GKE Cluster

Below are the steps to create a GKE cluster in Google Cloud Platform.

Here are the next steps using the gcloud tool.

# Login to your Google Account for GCP
gcloud auth login
gcloud config set project $YOUR_GCP_PROJECT_ID

# Enable necessary GCP services
gcloud services enable containerregistry.googleapis.com
gcloud services enable container.googleapis.com

# Test that everything is good, this command should work.
gcloud compute zones list

# Create a GKE Cluster in this project
gcloud container clusters create --machine-type n1-standard-4 open-match-dev-cluster --zone us-west1-a --tags open-match