-
1. Re: NSX-T Deploy Cluster Node
daphnissov Oct 31, 2019 6:22 PM (in response to seangadson)Care to provide more details?
-
2. Re: NSX-T Deploy Cluster Node
seangadson Nov 4, 2019 6:34 AM (in response to daphnissov)I updated with more details
-
3. Re: NSX-T Deploy Cluster Node
daphnissov Nov 4, 2019 6:56 AM (in response to seangadson)You say you're doing this through vRO? How? With what plug-in?
-
4. Re: NSX-T Deploy Cluster Node
seangadson Nov 4, 2019 6:58 AM (in response to daphnissov)Yea I am I am just using the NSX-T 2.5 Rest API not the actual NSX-T plugin
-
5. Re: NSX-T Deploy Cluster Node
daphnissov Nov 4, 2019 7:25 AM (in response to seangadson)Without trying this myself, I can only compare the body of yours to the reference provided in the documentation. I see one possible issue in the deployment_requests.deployment_config.manage_port_subnets object. Your body has a single object whereas the 2.5 documentation has an array of objects. See below for a truncated sample.
{"deployment_requests": [
{
"roles": ["CONTROLLER", "MANAGER"],
"form_factor": "MEDIUM",
"user_settings": {
"cli_password": "CLIp4$$w4rd",
"root_password": "ROOTp4$$w4rd"
},
"deployment_config": {
"placement_type": "VsphereClusterNodeVMDeploymentConfig",
"vc_id": "69874c95-51ed-4775-bba8-e0d13bdb4fed",
"management_network_id": "network-13",
"hostname": "node-0",
"compute_id": "domain-s9",
"storage_id": "datastore-12",
"default_gateway_addresses": ["10.33.79.253"],
"management_port_subnets": [
{
"ip_addresses": ["10.33.79.64"],
"prefix_length": 22
}
],
"dns_servers": ["10.33.38.2"]
}
}
]
}