summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorErno Kuvaja <jokke@usr.fi>2015-11-06 15:06:39 +0000
committerErno Kuvaja <jokke@usr.fi>2015-11-17 16:33:33 +0000
commite2384d0012dd51773dbb4b4436b81cf45078a1b9 (patch)
tree6619349be63ca96ebf5d5906a41e019554f9e3c8 /doc
parentfcd9ab5769cac6f80939a17368d14549fec26323 (diff)
downloadpython-glanceclient-e2384d0012dd51773dbb4b4436b81cf45078a1b9.tar.gz
Change man page examples to correlate default v2
Changing examples to correlate default behavior (v2 API) rather than old v1 options. Change-Id: I13a0d6040bfcd246189e0c1aeadf104ff5eff131
Diffstat (limited to 'doc')
-rw-r--r--doc/source/man/glance.rst10
1 files changed, 6 insertions, 4 deletions
diff --git a/doc/source/man/glance.rst b/doc/source/man/glance.rst
index 2b73dc5..6b53903 100644
--- a/doc/source/man/glance.rst
+++ b/doc/source/man/glance.rst
@@ -44,7 +44,9 @@ supplying an auth token using :option:`--os-image-url` and
You can select an API version to use by :option:`--os-image-api-version`
option or by setting corresponding environment variable::
- export OS_IMAGE_API_VERSION=2
+ export OS_IMAGE_API_VERSION=1
+
+Default Images API used is v2.
OPTIONS
=======
@@ -72,12 +74,12 @@ See available images::
Create new image::
glance image-create --name foo --disk-format=qcow2 \
- --container-format=bare --is-public=True \
- --copy-from http://somewhere.net/foo.img
+ --container-format=bare --visibility=public \
+ --file /tmp/foo.img
Describe a specific image::
- glance image-show foo
+ glance image-show <Image-ID>
BUGS