Skip to content

Commit

Permalink
add wait time for default profile to 15min (kubeflow#4007)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielwen authored and k8s-ci-robot committed Aug 26, 2019
1 parent 29e3244 commit b82db48
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bootstrap/pkg/kfapp/kustomize/kustomize.go
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,7 @@ func (kustomize *kustomize) Apply(resources kftypesv3.ResourceEnum) error {
b := backoff.NewExponentialBackOff()
b.InitialInterval = 3 * time.Second
b.MaxInterval = 30 * time.Second
b.MaxElapsedTime = 5 * time.Minute
b.MaxElapsedTime = 15 * time.Minute
return backoff.Retry(func() error {
_, nsErr := clientset.CoreV1().Namespaces().Get(defaultProfileNamespace, metav1.GetOptions{})
if nsErr != nil {
Expand Down

0 comments on commit b82db48

Please sign in to comment.