March 2019
Beginner to intermediate
778 pages
34h 20m
English
The container engine cluster runs on top of GCE. For this recipe, we'll create a two-node cluster which will be internally managed by Kubernetes:
$ gcloud container clusters create mysite-cluster --scopes "cloud-platform" --num-nodes 2 --zone us-east1-c
The gcloud command automatically generates a kubeconfig entry that enables us to use kubectl on the cluster:

$ kubectl get nodes
The gcloud command is used to manage resources on Google Cloud Project and kubectl is used ...
Read now
Unlock full access