Skip to content

Commit

Permalink
Merge pull request #1767 from gvanderpotte/startVM
Browse files Browse the repository at this point in the history
change order to ensure startVM is done early
  • Loading branch information
hawkowl authored Oct 1, 2021
2 parents d61fd16 + d36a5bd commit 880316a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cluster/install.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@ func (m *manager) AdminUpdate(ctx context.Context) error {
steps.Action(m.ensureDefaults),
steps.AuthorizationRefreshingAction(m.fpAuthorizer, steps.Action(m.ensureResourceGroup)), // re-create RP RBAC if needed after tenant migration
steps.Action(m.createOrUpdateDenyAssignment),
steps.Action(m.populateRegistryStorageAccountName),
steps.Action(m.startVMs),
steps.Condition(m.apiServersReady, 30*time.Minute, false),
steps.Action(m.populateRegistryStorageAccountName),
steps.Action(m.ensureBillingRecord), // belt and braces
steps.Action(m.configureAPIServerCertificate),
steps.Action(m.configureIngressCertificate),
Expand Down

0 comments on commit 880316a

Please sign in to comment.