Merge pull request #2560 from mhsreddy/fixing-mcscert-adminupdate

Fixes a bug in the certificate PUCM process
This commit is contained in:
Christoph Blecker 2022-11-28 17:02:35 -08:00 коммит произвёл GitHub
Родитель e48284b6c5 68121cc892
Коммит 0b196ae6dd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 7 добавлений и 1 удалений

Просмотреть файл

@ -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),