From 06701b2d6acc46c1390ec332986491c607cd0709 Mon Sep 17 00:00:00 2001 From: Tanmay Satam Date: Mon, 23 Sep 2024 18:11:07 -0400 Subject: [PATCH] Add platformWorkloadIdentityIDs step to install for WI clusters --- pkg/cluster/install.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkg/cluster/install.go b/pkg/cluster/install.go index e83908889e7..71870e087b1 100644 --- a/pkg/cluster/install.go +++ b/pkg/cluster/install.go @@ -326,7 +326,10 @@ func (m *manager) bootstrap() []steps.Step { // struct, so we'll rebuild the fpAuthorizer and use the error catching // to advance if m.doc.OpenShiftCluster.UsesWorkloadIdentity() { - s = append(s, steps.AuthorizationRetryingAction(m.fpAuthorizer, m.clusterIdentityIDs)) + s = append(s, + steps.AuthorizationRetryingAction(m.fpAuthorizer, m.clusterIdentityIDs), + steps.AuthorizationRetryingAction(m.fpAuthorizer, m.platformWorkloadIdentityIDs), + ) } else { s = append(s, steps.AuthorizationRetryingAction(m.fpAuthorizer, m.clusterSPObjectID)) }