Skip to content

Commit

Permalink
Add platformWorkloadIdentityIDs step to install for WI clusters
Browse files Browse the repository at this point in the history
  • Loading branch information
tsatam committed Sep 24, 2024
1 parent 5909bb3 commit 06701b2
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion pkg/cluster/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -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))
}
Expand Down

0 comments on commit 06701b2

Please sign in to comment.