Skip to content

Commit

Permalink
Merge pull request #25770 from zmerlynn/fix_root_disk_size
Browse files Browse the repository at this point in the history
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)]()
  • Loading branch information
k8s-merge-robot committed May 18, 2016
2 parents 48748a7 + 87a8905 commit bf8a513
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cluster/gce/util.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit bf8a513

Please sign in to comment.