Commit 87a8905b authored by Zach Loafman's avatar Zach Loafman

Fix gce/util.sh:get-master-root-disk-size

parent f3ab7b18
...@@ -629,7 +629,7 @@ function create-network() { ...@@ -629,7 +629,7 @@ function create-network() {
# Sets: # Sets:
# 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="10"
else else
export MASTER_ROOT_DISK_SIZE="50" export MASTER_ROOT_DISK_SIZE="50"
......
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