
2.Using the token acquired in the preceding step, execute this cURL command to view the team configuration:
curl
For example:
curl
The resulting team configuration output includes the following:
{
"team": {
"ip": "192.0.2.100", "revision":0 "members": [
{
"ip": "192.0.2.119" },
{
"ip": "192.0.2.125" },
{
"ip": "192.0.2.127"
}
]
}
}
In the json format, the above appears in the following layout:
{"team":{"ip":"192.0.2.100","members":
[{"ip":"192.0.2.119"},
{"ip":"192.0.2.125"},
{"ip":"192.0.2.127"}]}}
7.6Disbanding a team
Disbanding a team returns the teamed controllers to standalone operation.This action initiates the team delete. The REST call may return before the delete has completed. The admin needs to check the system to see the running state of the system.
NOTE: Before disbanding a team, delete the region configuration for that team. See “Deleting a region” (page 91).
1.Acquire an authentication token for the team leader. (See step 4 of “Team configuration prerequisites” (page 80).)
2.Using the token acquired in the preceding step, execute this cURL command to disband the team:
curl
The resulting output includes the following:
84 Team configuration