Skip to content

Instantly share code, notes, and snippets.

@dwdraju
Last active June 23, 2018 08:29
Show Gist options
  • Save dwdraju/fc573821d4dd2306e4fc90743cf12cb4 to your computer and use it in GitHub Desktop.
Save dwdraju/fc573821d4dd2306e4fc90743cf12cb4 to your computer and use it in GitHub Desktop.
gcloud sole tenancy
gcloud beta compute sole-tenancy node-templates create test-tenant-node --region us-central1 --node-requirements vCPU=any,memory=any,localSSD=0


gcloud beta compute sole-tenancy node-groups create sole-tenancy-group --zone us-central1-b --node-template test-tenant-node --target-size 2


gcloud beta compute instances create my-sole-instance --zone us-central1-b     --image-family ubuntu-1604-lts --image-project ubuntu-os-cloud     --node-group sole-tenancy-group --custom-cpu 4 --custom-memory 5

gcloud beta compute sole-tenancy node-templates list

gcloud beta compute instances delete my-sole-instance --zone us-central1-b

gcloud beta compute sole-tenancy node-groups delete sole-tenancy-group --zone us-central1-b
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment