Commit e023ec90 authored by Euan Kemp's avatar Euan Kemp

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.
parent fb679f99
...@@ -673,7 +673,7 @@ function create-network() { ...@@ -673,7 +673,7 @@ function create-network() {
# MASTER_ROOT_DISK_SIZE # MASTER_ROOT_DISK_SIZE
function get-master-root-disk-size() { function get-master-root-disk-size() {
if [[ "${NUM_NODES}" -le "1000" ]]; then if [[ "${NUM_NODES}" -le "1000" ]]; then
export MASTER_ROOT_DISK_SIZE="10" export MASTER_ROOT_DISK_SIZE="20"
else else
export MASTER_ROOT_DISK_SIZE="50" export MASTER_ROOT_DISK_SIZE="50"
fi fi
......
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