From e023ec90f39ade7aa164a9bf4ae30c433f1b854d Mon Sep 17 00:00:00 2001 From: Euan Kemp Date: Fri, 2 Sep 2016 15:52:07 -0700 Subject: [PATCH] cluster/gce: Update master root disk size As part of #29213, the hyperkube image will be deployed alongside existing dependencies. This ends up just running over the root disk size of 10 during extraction. --- cluster/gce/util.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cluster/gce/util.sh b/cluster/gce/util.sh index 89c0c4b254f..c14eccad0ce 100755 --- a/cluster/gce/util.sh +++ b/cluster/gce/util.sh @@ -673,7 +673,7 @@ function create-network() { # MASTER_ROOT_DISK_SIZE function get-master-root-disk-size() { if [[ "${NUM_NODES}" -le "1000" ]]; then - export MASTER_ROOT_DISK_SIZE="10" + export MASTER_ROOT_DISK_SIZE="20" else export MASTER_ROOT_DISK_SIZE="50" fi