diff options
| author | Alex Schultz <aschultz@mirantis.com> | 2015-10-06 22:12:44 -0500 |
|---|---|---|
| committer | Alex Schultz <aschultz@mirantis.com> | 2015-10-16 14:01:37 +0000 |
| commit | d1bc15f498da1a4d5f1c865d5eb6a151f472be9c (patch) | |
| tree | dda3c740e87c4802f36ed9438615e232972b2e72 /doc/source/command-objects/compute-agent.rst | |
| parent | cb533ef0400dc49b50c28ab35ea6c2c0146377d7 (diff) | |
| download | python-openstackclient-d1bc15f498da1a4d5f1c865d5eb6a151f472be9c.tar.gz | |
Add compute service delete
This change adds 'compute service delete <service>' to the openstack
client. This is the equivalent of 'nova service-delete <id>'
Change-Id: I69ef1cac72cbe125c2114f8e958e22350a70f367
Closes-Bug: #1503510
Diffstat (limited to 'doc/source/command-objects/compute-agent.rst')
| -rw-r--r-- | doc/source/command-objects/compute-agent.rst | 100 |
1 files changed, 100 insertions, 0 deletions
diff --git a/doc/source/command-objects/compute-agent.rst b/doc/source/command-objects/compute-agent.rst new file mode 100644 index 00000000..395ee4f3 --- /dev/null +++ b/doc/source/command-objects/compute-agent.rst @@ -0,0 +1,100 @@ +============= +compute agent +============= + +Compute v2 + +compute agent create +-------------------- + +Create compute agent + +.. program:: compute agent create +.. code:: bash + + os compute agent create + <os> <architecture> <version> <url> <md5hash> + <hypervisor> + +.. _compute_agent-create: +.. describe:: <os> + + Type of OS + +.. describe:: <architecture> + + Type of architecture + +.. describe:: <version> + + Version + +.. describe:: <url> + + URL + +.. describe:: <md5hash> + + MD5 hash + +.. describe:: <hypervisor> + + Type of hypervisor + +compute agent delete +-------------------- + +Delete compute agent command + +.. program:: compute agent delete +.. code:: bash + + os compute agent delete <id> + +.. _compute_agent-delete: +.. describe:: <id> + + ID of agent to delete + +compute agent list +------------------ + +List compute agent command + +.. program:: compute agent list +.. code:: bash + + os compute agent list [--hypervisor <hypervisor>] + +.. _compute_agent-list: +.. describe:: --hypervisor <hypervisor> + + Optional type of hypervisor + +compute agent set +----------------- + +Set compute agent command + +.. program:: agent set +.. code:: bash + + os compute agent set + <id> <version> <url> <md5hash> + +.. _compute_agent-set: +.. describe:: <id> + + ID of the agent + +.. describe:: <version> + + Version of the agent + +.. describe:: <url> + + URL + +.. describe:: <md5hash> + + MD5 hash |
