Perform a Partial Bring-up of VMware Cloud Foundation
VMware Cloud Foundation
You perform a partial bring-up to enable the recovery of the management domain vSAN cluster using a temporary vCenter Server instance.
The
VMware Cloud Foundation
deployment process will finish after deploying vCenter Server.UI Procedure
Follow the
VMware Cloud Foundation Deployment Guide
for your VMware Cloud Foundation
version using the modified bring-up JSON file or deployment parameters workbook.PowerShell Procedure
- Start PowerShell.
- Replace the values in the sample code with your values and run the commands in the PowerShell console.$extractedSDDCDataFile = ".\extracted-sddc-data.json" $tempVcenterIp ="172.17.31.170" $tempVcenterHostname ="sfo-m01-vc02" $localUserPassword ="VMw@re1!VMw@re1!" $rootUserPassword ="VMw@re1!" $basicAuthUserPassword ="VMw@re1!" $vcfUserPassword ="VMw@re1!" $transportVlanId ="2288" $mgmtVcenterServerSize ="small" $cloudBuilderFQDN = sfo-cb01.sfo.rainpole.io $cloudBuilderAdminUserPassword = "VMw@re1!"
- Generate a partial bring-up JSON file by running the command in the PowerShell console. When prompted, select the physical NICs to be assigned to each distributed switch.New-ReconstructedPartialBringupJsonSpec -extractedSDDCDataFile ".\extracted-sddc-data.json" -tempVcenterIp $tempVcenterIp -tempVcenterHostname $tempVcenterHostname -vcfLocalUserPassword $localUserPassword -vcfRootUserPassword $rootUserPassword -vcfRestApiPassword $basicAuthUserPassword -vcfSecondUserPassword $vcfUserPassword -transportVlanId $transportVlanId -dedupEnabled $false -vcenterServerSize $mgmtVcenterServerSize
- Connect to VMware Cloud Builder by running the command in the PowerShell console.Connect-VcfCloudBuilderServer -server sfo-cb01.sfo.rainpole.io -User 'admin' -Password $cloudBuilderAdminUserPassword
- Validate the bring-up JSON file on VMware Cloud Builder by running the command in the PowerShell console.$extractedSDDCDataFile = "F:\sddc-manager-backup\extracted-sddc-data.json" $partialBringupSpecFile = (($extractedSddcData.workloadDomains | Where-Object {$_.domainType -eq "MANAGEMENT"}).domainName + "-partial-bringup-spec.json") $cloudBuilderFQDN = "sfo-cb01.sfo.rainpole.io" $cloudBuilderAdminUserPassword = "VMw@re1!VMw@re1!" New-PartialManagementDomainDeployment -partialBringupSpecFile $partialBringupSpecFile -extractedSDDCDataFile $extractedSDDCDataFile -cloudBuilderFQDN $cloudBuilderFQDN -cloudBuilderAdminUserPassword $cloudBuilderAdminUserPassword
- Monitor the bring-up progress in the VMware Cloud Builder UI.