Commit bf8a513a authored by k8s-merge-robot's avatar k8s-merge-robot

Merge pull request #25770 from zmerlynn/fix_root_disk_size

Automatic merge from submit-queue Fix gce/util.sh:get-master-root-disk-size Fixes problem from #25670 ``` cluster/../cluster/../cluster/gce/util.sh: line 632: [: missing `]' ``` [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/.github/PULL_REQUEST_TEMPLATE.md?pixel)]()
parents 48748a74 87a8905b
......@@ -629,7 +629,7 @@ function create-network() {
# Sets:
# 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"
else
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