Try this one, then: Execute a GET against this URL https://<manager-ip>/api/v1/transport-nodes/<tn-id> and in tn-id, put the ID of the edge that is presenting problems. This will return a JSON wi...
See more...
Try this one, then: Execute a GET against this URL https://<manager-ip>/api/v1/transport-nodes/<tn-id> and in tn-id, put the ID of the edge that is presenting problems. This will return a JSON with all configuration of this node. Then, execute the POST below: url -k -v -u 'admin:PASSWORD' -X POST -H 'Content-Type: application/json' -d '{
"vm_id":"VM ID",
"vm_deployment_config": {
<You can get this info from the previous GET command>
}
}' https://<manager-ip>/api/v1/transport-nodes/<tn-id>?action=addOrUpdatePlacementReferences You can get the VM_DEPLOYMENT_CONFIG info, from the previous GET command.