This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # create GPU pool | |
| gcloud container node-pools create <GPU_POOL_NAME> \ | |
| --accelerator type=nvidia-tesla-k80,count=1 \ | |
| --zone us-central1-a --cluster <CLUSTER_NAME> \ | |
| --num-nodes=1 --machine-type=n1-standard-4 --min-nodes=0 --max-nodes=5 --enable-autoscaling |
NewerOlder