CLI for Local Server Groups
Command | Description |
---|---|
Creates server group from servers |
|
Describes server group |
|
Modifies server group |
|
Adds server to a server group |
|
Deletes server group |
|
Lists all server groups in the environment |
|
Removes server from a server group |
runtime-mgr serverGroup create
> runtime-mgr serverGroup create [options] <name> [serverIds...]
This command creates a server group with the name passed in name
using the server Id(s) passed as argument(s) thereafter.
This command accepts only the default options: --help
, -f
/--fields
and -o
/--output
.
runtime-mgr serverGroup describe
> runtime-mgr serverGroup describe [options] <serverGroupId>
This command describes the server group passed in serverGroupId
.
This command accepts only the default options: --help
, -f
/--fields
and -o
/--output
.
runtime-mgr serverGroup modify
> runtime-mgr serverGroup modify [options] <serverGroupId>
This command modifies the server group passed in serverGroupId
.
In order to update the id for the cluster, you need to pass the --name
option.
Besides the --name
option, this command also takes the default --help
, -f
/--fields
and -o
/--output
options.
runtime-mgr serverGroup add server
> runtime-mgr serverGroup add server [options] <serverGroupId> <serverId>
This command adds the server passed in serverId
to the server group passed in serverGroupId
.
This command accepts only the default options: --help
, -f
/--fields
and -o
/--output
.
runtime-mgr serverGroup delete
> runtime-mgr serverGroup delete [options] <serverGroupId>
This command deletes the server groups passed in serverGroupId
.
This command accepts only the default options: --help
, -f
/--fields
and -o
/--output
.
This command does not prompt twice before deleting. If you send a delete instruction, it does not ask for confirmation. |