Skip to content

Commit

Permalink
Bump polling interval/timeout for waiting for envoy daemonset
Browse files Browse the repository at this point in the history
Signed-off-by: Sunjay Bhatia <sunjayb@vmware.com>
  • Loading branch information
sunjayBhatia committed Oct 21, 2021
1 parent d57d0b7 commit ed87ba5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/deployment.go
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ func (d *Deployment) WaitForEnvoyDaemonSetUpdated() error {
// if we expand to more, we will have to rethink this.
return tempDS.Status.NumberReady > 0, nil
}
return wait.PollImmediate(time.Millisecond*50, time.Minute*3, daemonSetUpdated)
return wait.PollImmediate(time.Millisecond*100, time.Minute*5, daemonSetUpdated)
}

func (d *Deployment) EnsureRateLimitResources(namespace string, configContents string) error {
Expand Down

0 comments on commit ed87ba5

Please sign in to comment.