Skip to content

Commit c66077a

Browse files
authored
Fix Clusters Fail to Create Private Endpoint and Identity Provider (#8411)
Include a timeout setting when associating an identity provider as part of cluster creation. This allows the task to complete before subsequent tasks attempt to modify the cluster. Addresses issue #8410
1 parent 3393990 commit c66077a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pkg/actions/identityproviders/tasks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ func (t *AssociateProvidersTask) Describe() string {
3232

3333
func (t *AssociateProvidersTask) Do() error {
3434
m := NewManager(t.metadata, t.eks)
35-
return m.Associate(t.ctx, AssociateIdentityProvidersOptions{Providers: t.providers})
35+
return m.Associate(t.ctx, AssociateIdentityProvidersOptions{Providers: t.providers, WaitTimeout: api.DefaultWaitTimeout})
3636
}

0 commit comments

Comments
 (0)