Merge pull request #8537 from a-robinson/ssd

Change the default master data disk on GCE to be a 20GB SSD
This commit is contained in:
Tim Hockin 2015-05-27 09:39:19 -07:00
commit 93a67b75a0
2 changed files with 4 additions and 4 deletions

View File

@ -21,8 +21,8 @@ ZONE=${KUBE_GCE_ZONE:-us-central1-b}
MASTER_SIZE=${MASTER_SIZE:-n1-standard-1}
MINION_SIZE=${MINION_SIZE:-n1-standard-1}
NUM_MINIONS=${NUM_MINIONS:-4}
MASTER_DISK_TYPE=pd-standard
MASTER_DISK_SIZE=${MASTER_DISK_SIZE:-100GB}
MASTER_DISK_TYPE=pd-ssd
MASTER_DISK_SIZE=${MASTER_DISK_SIZE:-20GB}
MINION_DISK_TYPE=pd-standard
MINION_DISK_SIZE=${MINION_DISK_SIZE:-100GB}

View File

@ -21,8 +21,8 @@ ZONE=${KUBE_GCE_ZONE:-us-central1-b}
MASTER_SIZE=${MASTER_SIZE:-g1-small}
MINION_SIZE=${MINION_SIZE:-g1-small}
NUM_MINIONS=${NUM_MINIONS:-2}
MASTER_DISK_TYPE=pd-standard
MASTER_DISK_SIZE=${MASTER_DISK_SIZE:-100GB}
MASTER_DISK_TYPE=pd-ssd
MASTER_DISK_SIZE=${MASTER_DISK_SIZE:-20GB}
MINION_DISK_TYPE=pd-standard
MINION_DISK_SIZE=${MINION_DISK_SIZE:-100GB}