NSX Manager nodes deployed directly via the NSX Manager UI (Out-of-Band) are not automatically detected or synchronized by SDDC Manager. This inventory discrepancy prevents management tasks such as CA-signed certificate replacement via Fleet Management and cluster upgrades.
Symptoms:
get cluster status shows a healthy three-node cluster.GET /v1/nsxt-clusters returns only one node spec.SDDC Manager maintains a managed resource database that is only populated when scale-out operations are orchestrated through the SDDC Manager interface or API. Nodes added OOB lack the necessary UUID and network metadata in the SDDC nsx_manager tables.
To resolve the issue, NSX Manager scale out must be performed exclusively via SDDC Manager; Broadcom is currently updating technical documentation to formalize this limitation.
Perform the following steps to reconcile the inventory:
deactivate cluster from the primary node CLI.GET /v1/nsxt-clusters to retrieve the nsxt-cluster-id.POST /v1/nsxt-clusters/{nsxt-cluster-id}/scale-out using the following JSON payload:{
"nsxManagerSpecs": [
{
"name": "####-nsx-node2",
"networkDetailsSpec": {
"ipAddress": "####.####.####.####",
"dnsName": "####-nsx-node2.example.com",
"gateway": "####.####.####.####",
"subnetMask": "####.####.####.####"
}
},
{
"name": "####-nsx-node3",
"networkDetailsSpec": {
"ipAddress": "####.####.####.####",
"dnsName": "####-nsx-node3.example.com",
"gateway": "####.####.####.####",
"subnetMask": "####.####.####.####"
}
}
]
}202 Accepted.Post-validation (Full Synchronization may take up to an hour.)