Commit 13b805fe authored by Rohit Jnagal's avatar Rohit Jnagal

Merge pull request #6504 from ghodss/gce-customize-minion-size

Make minion disk size in GCE kube-up customizable
parents 19af060d 6ec32bf1
...@@ -22,7 +22,7 @@ MASTER_SIZE=${MASTER_SIZE:-n1-standard-1} ...@@ -22,7 +22,7 @@ MASTER_SIZE=${MASTER_SIZE:-n1-standard-1}
MINION_SIZE=${MINION_SIZE:-n1-standard-1} MINION_SIZE=${MINION_SIZE:-n1-standard-1}
NUM_MINIONS=${NUM_MINIONS:-4} NUM_MINIONS=${NUM_MINIONS:-4}
MINION_DISK_TYPE=pd-standard MINION_DISK_TYPE=pd-standard
MINION_DISK_SIZE=100GB MINION_DISK_SIZE=${MINION_DISK_SIZE:-100GB}
# TODO(dchen1107): Filed an internal issue to create an alias # TODO(dchen1107): Filed an internal issue to create an alias
# for containervm image, so that gcloud will expand this # for containervm image, so that gcloud will expand this
# to the latest supported image. # to the latest supported image.
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment