Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 386 Bytes

provisioning-coreos-on-gce.md

File metadata and controls

22 lines (17 loc) · 386 Bytes

Provisioning CoreOS on Google Compute Engine

Provision 4 CoreOS nodes:

for i in {0..3}; do
  gcloud compute instances create node${i} \
  --image-project coreos-cloud \
  --image coreos-stable-717-3-0-v20150710 \
  --boot-disk-size 200GB \
  --machine-type n1-standard-1 \
  --can-ip-forward \
  --scopes compute-rw
done

List nodes:

gcloud compute instances list