summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjunboli <junbo85.li@gmail.com>2017-06-24 15:56:16 +0800
committerjunbo.li <junbo85.li@gmail.com>2017-07-26 02:03:25 +0000
commit9c36efa39c163354b145ecda897aef50dcdb4d57 (patch)
treeb14443cfc4b5eb19c2063e22dd025236f23830ac
parent9ea2e61cc1eec015efd5a17212261431ec5145ca (diff)
downloadpython-cinderclient-9c36efa39c163354b145ecda897aef50dcdb4d57.tar.gz
Update cinder.rst and shell.rst
In the file doc/source/man/cinder.rst, add cinder command examples, In the file doc/source/shell.rst, update OS_AUTH_URL and OS_VOLUME_API_VERSION Change-Id: I6ed2c5228daad8dd6dcab1d7278f8a0b049c0490
-rw-r--r--doc/source/man/cinder.rst25
-rw-r--r--doc/source/shell.rst4
2 files changed, 27 insertions, 2 deletions
diff --git a/doc/source/man/cinder.rst b/doc/source/man/cinder.rst
index 50fb644..4cd9571 100644
--- a/doc/source/man/cinder.rst
+++ b/doc/source/man/cinder.rst
@@ -51,6 +51,31 @@ To get usage and options of a command::
cinder help <command>
+EXAMPLES
+========
+
+Get information about volume create command::
+
+ cinder help create
+
+List all the volumes::
+
+ cinder list
+
+Create new volume::
+
+ cinder create 1 --name volume01
+
+Describe a specific volume::
+
+ cinder show 65d23a41-b13f-4345-ab65-918a4b8a6fe6
+
+Create a snapshot::
+
+ cinder snapshot-create 65d23a41-b13f-4345-ab65-918a4b8a6fe6 \
+ --name qt-snap
+
+
BUGS
====
diff --git a/doc/source/shell.rst b/doc/source/shell.rst
index 96b4f4f..813b769 100644
--- a/doc/source/shell.rst
+++ b/doc/source/shell.rst
@@ -37,8 +37,8 @@ For example, in Bash you'd use::
export OS_USERNAME=yourname
export OS_PASSWORD=yadayadayada
export OS_TENANT_NAME=myproject
- export OS_AUTH_URL=http://...
- export OS_VOLUME_API_VERSION=1
+ export OS_AUTH_URL=http://auth.example.com:5000/v2.0
+ export OS_VOLUME_API_VERSION=3
From there, all shell commands take the form::