google cloud platform - Is it possible to specifiy the boot disk type for a node pool? -


i'm trying create node pool machines booting ssd gcloud. if tried creating compute instance use --boot-disk-type option specify that, yet there seems no such option when creating node pool.

i've checked documentation on creating node-pools , tried specify --boot-disk-type option anyway so:

gcloud container node-pools create test-pool --cluster=my-cluster --machine-type=n1-highcpu-4 --disk-size=50 --num-nodes=2 --boot-disk-type=pd-ssd 

both without success. question is, whether possible create node pool machines booting ssd. maybe i'm trying wrong way. if not supported, possible workaround node pool machines booting ssd?


i'm aware can add local ssds machines using --local-ssd-count option. yet not seem solve problem.

there isn't option specify boot disk type node pool. options can specify nodes documented in nodeconfig struct in google container engine api.

as aside, fields exist in managed instance group not in google container engine api can use workaround posted here beware changes not "sticky" across node version upgrades.


Comments

Popular posts from this blog

minify - Minimizing css files -

neo4j - finding mutual friends in a cypher statement starting with three or more persons -

php - How to remove letter in front of the word laravel -