Now you’re less likely to miss what’s been brewing in our knowledge base with this weekly digest
Please, try again later.
# Appliances of the following tenants will be skipped from redeploying.
# Make sure to include all tenants having active failover in order not to disrupt connectivity.
# Hint: Specify dummy non-existent tenant's name here to process all tenants.
$tenants_to_skip = "Tenant1", "Tenant2"
# Customizable suffix to be added to redeployed appliances. Must not be blank.
$suffix = "_new"
$skiptenants = Get-VBRCloudTenant -Name $tenants_to_skip
$skiptenantsID = $skiptenants.id
$appliances = Get-VBRCloudTenantNetworkAppliance | Where-Object {$_.Platform -eq "VMWare" -and $_.TenantId -notin $skiptenantsID}
ForEach ($appl in $appliances)
{
$newName = $appl.Name + $suffix
Write-Host "Updating" $newName
Set-VBRCloudTenantNetworkAppliance -Appliance $appl -Name $newName -ErrorAction "Continue"
}
Your feedback has been received and will be reviewed.
Please, try again later.
Please try select less.
This form is only for KB Feedback/Suggestions, if you need help with the software open a support case
Your feedback has been received and will be reviewed.
Please, try again later.