In this lab you will provision two GCE instances running Ubuntu 16.04. These instances will be used to provision a two node Kubernetes cluster.
gcloud compute instances create node0 \
--image-project ubuntu-os-cloud \
--image ubuntu-1510-wily-v20160405 \
--boot-disk-size 200GB \
--machine-type n1-standard-1 \
--can-ip-forward
gcloud compute instances create node1 \
--image-project ubuntu-os-cloud \
--image ubuntu-1510-wily-v20160405 \
--boot-disk-size 200GB \
--machine-type n1-standard-1 \
--can-ip-forward
gcloud compute instances list