Skip to content

Commit

Permalink
Increase clusterclient timeout and retry intervals (#356)
Browse files Browse the repository at this point in the history
  • Loading branch information
karan authored and k8s-ci-robot committed Jun 21, 2018
1 parent 6fa5355 commit 96b45e6
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions clusterctl/clusterdeployer/clusterclient.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,11 @@ import (

const (
ApiServerPort = 443
RetryIntervalKubectlApply = 5 * time.Second
RetryIntervalResourceReady = 5 * time.Second
TimeoutKubectlApply = 5 * time.Minute
TimeoutResourceReady = 5 * time.Minute
TimeoutMachineReady = 10 * time.Minute
RetryIntervalKubectlApply = 10 * time.Second
RetryIntervalResourceReady = 10 * time.Second
TimeoutKubectlApply = 15 * time.Minute
TimeoutResourceReady = 15 * time.Minute
TimeoutMachineReady = 30 * time.Minute
)

type clusterClient struct {
Expand Down

0 comments on commit 96b45e6

Please sign in to comment.