зеркало из https://github.com/Azure/ARO-RP.git
Merge pull request #2560 from mhsreddy/fixing-mcscert-adminupdate
Fixes a bug in the certificate PUCM process
This commit is contained in:
Коммит
0b196ae6dd
|
@ -195,6 +195,7 @@ func TestAdminUpdateSteps(t *testing.T) {
|
|||
"[Action ensureDefaults-fm]",
|
||||
"[Action fixupClusterSPObjectID-fm]",
|
||||
"[Action fixInfraID-fm]",
|
||||
"[Action populateDatabaseIntIP-fm]",
|
||||
"[Action startVMs-fm]",
|
||||
"[Condition apiServersReady-fm, timeout 30m0s]",
|
||||
"[Action fixMCSCert-fm]",
|
||||
|
|
|
@ -57,11 +57,16 @@ func (m *manager) adminUpdate() []steps.Step {
|
|||
steps.Action(m.populateRegistryStorageAccountName), // must go before migrateStorageAccounts
|
||||
steps.Action(m.migrateStorageAccounts),
|
||||
steps.Action(m.fixSSH),
|
||||
steps.Action(m.populateDatabaseIntIP),
|
||||
//steps.Action(m.removePrivateDNSZone), // TODO(mj): re-enable once we communicate this out
|
||||
)
|
||||
}
|
||||
|
||||
if isEverything || isRenewCerts {
|
||||
toRun = append(toRun,
|
||||
steps.Action(m.populateDatabaseIntIP),
|
||||
)
|
||||
}
|
||||
|
||||
// Make sure the VMs are switched on and we have an APIServer
|
||||
toRun = append(toRun,
|
||||
steps.Action(m.startVMs),
|
||||
|
|
Загрузка…
Ссылка в новой задаче