Google Kubernetes Engine (GKE) Quick Start on CLI
Google Cloud provides a nice quickstart guide for GKE: https://cloud.google.com/kubernetes-engine/docs/quickstart This post follows the steps on CLI. You need to install gcloud & kubectl as a pre-requisite. # enable GKE % gcloud services enable container.googleapis.com % gcloud services list | grep -i 'kube' container.googleapis.com Kubernetes Engine API # config gcloud % gcloud config set project YOUR_PROJECT_ID % gcloud config set compute/zone us-west1-a % gcloud config set compute/region us-west1 # create cluster (few minutes) % gcloud container clusters create hello-cluster --num-nodes=1 % gcloud container clusters list NAME LOCATION MASTER_VERSION MASTER_IP MACHINE_TYPE NODE_VERSION NUM_NODES STATUS hello-cluster us-west1-a 1.18.17-gke.100 35.230.17.63 e2-medium 1.18.17-gke.100 1...