From f64024e24527c81c4c0856a331c19798f0012f1c Mon Sep 17 00:00:00 2001 From: Adrien Delorme Date: Wed, 18 Nov 2015 14:36:11 +0100 Subject: [PATCH] Allow to specify the type of minion disks on GCE --- cluster/gce/config-default.sh | 2 +- cluster/gce/config-test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cluster/gce/config-default.sh b/cluster/gce/config-default.sh index 2e5235ab977..8fd2fa8422f 100755 --- a/cluster/gce/config-default.sh +++ b/cluster/gce/config-default.sh @@ -23,7 +23,7 @@ MINION_SIZE=${MINION_SIZE:-n1-standard-2} NUM_MINIONS=${NUM_MINIONS:-3} MASTER_DISK_TYPE=pd-ssd MASTER_DISK_SIZE=${MASTER_DISK_SIZE:-20GB} -MINION_DISK_TYPE=pd-standard +MINION_DISK_TYPE=${MINION_DISK_TYPE:-pd-standard} MINION_DISK_SIZE=${MINION_DISK_SIZE:-100GB} REGISTER_MASTER_KUBELET=${REGISTER_MASTER:-true} PREEMPTIBLE_MINION=${PREEMPTIBLE_MINION:-false} diff --git a/cluster/gce/config-test.sh b/cluster/gce/config-test.sh index 0d48c663fe0..8eca5118d70 100755 --- a/cluster/gce/config-test.sh +++ b/cluster/gce/config-test.sh @@ -23,7 +23,7 @@ MINION_SIZE=${MINION_SIZE:-n1-standard-2} NUM_MINIONS=${NUM_MINIONS:-3} MASTER_DISK_TYPE=pd-ssd MASTER_DISK_SIZE=${MASTER_DISK_SIZE:-20GB} -MINION_DISK_TYPE=pd-standard +MINION_DISK_TYPE=${MINION_DISK_TYPE:-pd-standard} MINION_DISK_SIZE=${MINION_DISK_SIZE:-100GB} REGISTER_MASTER_KUBELET=${REGISTER_MASTER:-false} KUBE_APISERVER_REQUEST_TIMEOUT=300