Skip to content

Commit

Permalink
eks: increase fargate test timeouts
Browse files Browse the repository at this point in the history
Signed-off-by: Gyuho Lee <[email protected]>
  • Loading branch information
gyuho committed Jul 14, 2020
1 parent bc6fa6d commit 1ec0cb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion eks/fargate/fargate.go
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ func (ts *tester) checkPod() error {
)

succeeded := false
retryStart, waitDur := time.Now(), 3*time.Minute
retryStart, waitDur := time.Now(), 10*time.Minute
for time.Now().Sub(retryStart) < waitDur {
select {
case <-ts.cfg.Stopc:
Expand Down
2 changes: 1 addition & 1 deletion eks/irsa-fargate/irsa-fargate.go
Original file line number Diff line number Diff line change
Expand Up @@ -1044,7 +1044,7 @@ func (ts *tester) checkResults() (err error) {

ts.cfg.Logger.Info("checking results")
ready := false
waitDur := 7*time.Minute + time.Duration(ts.cfg.EKSConfig.AddOnIRSA.DeploymentReplicas)*3*time.Second
waitDur := 10 * time.Minute
retryStart := time.Now()
for time.Now().Sub(retryStart) < waitDur {
select {
Expand Down

0 comments on commit 1ec0cb1

Please sign in to comment.