Currently there is no resolution to this issue.
Workaround:
Reconfigure the Route Redistribution via Policy API/UI before the Upgrade to avoid encountering the issue.
or
Reconfigure the Route Redistribution via Policy API/UI after the Upgrade to remediate the issue.
How to validate whether the issue is present:
- Run the below API and ensure that the "route_redistribution_types" are present in locale-services
https://<NSX-T-IP>/policy/api/v1/infra/tier-0s/<Tier-0-Name>/locale-services
- Example to show when the system would NOT migrate the Route distribution post upgrade
{
"results" : [ {
"route_redistribution_config" : {
"bgp_enabled" : true,
"redistribution_rules" : [ ] <<<< This absence of an entry is indicative of the issue.
},
"bfd_profile_path" : "/infra/bfd-profiles/default",
"resource_type" : "LocaleServices",
"id" : "2b9994a0-9a96-11ec-8bde-394a1b48172d",
"display_name" : "2b9994a0-9a96-####-####-########72d",
"path" : "/infra/tier-0s/Tier-0/locale-services/2b9994a0-9a96-####-####-########72d",
"relative_path" : "2b9994a0-9a96-####-####-########72d",
"parent_path" : "/infra/tier-0s/Tier-0",
"marked_for_delete" : false,
"overridden" : false,
"_create_user" : "admin",
"_create_time" : 1646273001602,
"_last_modified_user" : "system",
"_last_modified_time" : 1646278272786,
"_system_owned" : false,
"_protection" : "NOT_PROTECTED",
"_revision" : 4
} ],
"result_count" : 1,
"sort_by" : "display_name",
"sort_ascending" : true
}
- Example to show when the system would migrate the Route distribution post upgrade
{
"results" : [ {
"route_redistribution_types" : [ "TIER0_CONNECTED", "TIER0_STATIC" ], <<<<< Entry when the parameter is present
"resource_type" : "LocaleServices",
"id" : "2c462a80-9aa5-####-####-########d1e",
"display_name" : "2c462a80-9aa5-####-####-########d1e",
"path" : "/infra/tier-0s/Tier-0/locale-services/2c462a80-9aa5-####-####-########d1e",
"relative_path" : "2c462a80-9aa5-####-####-########d1e",
"parent_path" : "/infra/tier-0s/Tier-0",
"marked_for_delete" : false,
"_create_user" : "admin",
"_create_time" : 1646279276378,
"_last_modified_user" : "admin",
"_last_modified_time" : 1646279293871,
"_system_owned" : false,
"_protection" : "NOT_PROTECTED",
"_revision" : 1
} ],
"result_count" : 1,
"sort_by" : "display_name",
"sort_ascending" : true
}