SDDC Manager 9.0.x
In the current version of VCF SDDC manager 9.0.x, the scale out operations performed inside NSX are not synced back to the SDDC manager. This is planned for a future release.
Note: To ensure inventory synchronization, NSX Manager scale out must be performed exclusively via SDDC Manager; Broadcom is currently updating technical documentation to formalize this limitation.
Make sure you have an NSX and SDDC backup, prior to following the steps below.
Step 1 - Deactivate the existing NSX Manager Cluster
deactivate clusterStep 2 - Scaling out the NSX Manager Cluster via SDDC API (Use the GUI or CLI API)
Procedure to Scale Out NSX Manager Nodes via SDDC Manager API:
Log in to the SDDC Manager UI.
Navigate to the Developer Center via the home dashboard or sidebar.
Select the API Categories
GET /v1/nsxt-clusters
Locate the NSX-T Clusters section and select scale-out endpoint as below:
NSX-T Cluster
POST /v1/nsxt-clusters/{nsxt-cluster-id}/scale-out
Paste the nsxt-cluster-id
*EXAMPLE* In the request body field, enter YOUR NODE DETAILS the following JSON payload:
{
"nsxManagerSpecs": [
{
"name": "<NAME>",
"networkDetailsSpec": {
"ipAddress": "192.168.1.###",
"dnsName": "<FQDN>",
"gateway": "192.168.1.###",
"subnetMask": "255.255.255.0"
}
},
{
"name": "<NAME>",
"networkDetailsSpec": {
"ipAddress": "192.168.1.###",
"dnsName": "<FQDN>",
"gateway": "192.168.1.###",
"subnetMask": "255.255.255.0"
}
}
]
}
Click Execute
Note: Above, replace FQDN, NAME and IP addressing with the correct values for the two additional NSX manager node to add to the NSX manager cluster.
Post-validation (Full Synchronization may take up to an hour.)
Refer to API guide: Scale Out Nsx