Creating a Kubernetes Cluster
This page shows how to run Kubernetes on Google Kubernetes Engine (GKE)
Installing Google Cloud SDK
$ gcloud components install kubectlConfigure default settings
PROJECT_ID=beaconchain
CLUSTER_NAME=cardano
CLUSTER_ZONE=us-central1-a
# Setting a default project ID
$ gcloud config set project $PROJECT_ID
# Setting a default compute zone or region
$ gcloud config set compute/zone $CLUSTER_ZONECreating a GKE cluster
Get credentials for the cluster
Last updated