Skip to content

Commit ca5129c

Browse files
committed
Adjust maximum kubernetes scaling time to 20 minutes.
In some cases, where the cluster itself needs to scale out and add additional workers, this portion of the work can take 10 minutes on its own, separate from finally being able to schedule and deploy the cluster on those new workers.
1 parent cc3f85d commit ca5129c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

utils/caocontrol/controller.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -996,7 +996,7 @@ func (c *Controller) waitCouchbaseClusterAvailable(
996996
}
997997

998998
return true, nil
999-
}, 10*time.Minute)
999+
}, 20*time.Minute)
10001000
if err != nil {
10011001
return errors.Wrap(err, "failed to wait for couchbase cluster")
10021002
}

0 commit comments

Comments
 (0)