summaryrefslogtreecommitdiff
path: root/doc
Commit message (Collapse)AuthorAgeFilesLines
...
| * Reset-state and snapshot-reset-state for multiple objectsEric Harney2013-12-041-0/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This allows a user to call reset-state or snapshot-reset-state on a list of objects. The behavior is modeled after a similar change to delete multiple volumes. $ cinder reset-state good_volume good_volume_2 <no output> Error behavior is as follows: One success/one failure: $ cinder reset-state good_volume asdf Reset state for volume asdf failed: No volume with a name or ID of 'asdf' exists. One failure: $ cinder reset-state asdf ERROR: Reset state for volume asdf failed: No volume with a name or ID of 'asdf' exists. Two failures: $ cinder reset-state asdf qwert Reset state for volume asdf failed: No volume with a name or ID of 'asdf' exists. Reset state for volume qwert failed: No volume with a name or ID of 'qwert' exists. ERROR: Unable to reset the state for any of the specified volumes. Related-Bug: 1241941 Closes-Bug: 1256069 Change-Id: Id0a36fb7de0d69be0dac98ea04e4708775250b7a
* | Ignore swap files generated during file edting by vimZhenguo Niu2013-12-041-0/+1
|/ | | | | | | | | | To ignore swap files from getting into repository currently the implemented ignore is *.swp however vim adds more swap files if these files exists, so improving this with .*.sw? Change-Id: I11965d5fb22aeae622dad8bb29cf1f0533ed439a Closes-Bug: #1255876
* Add search_opts into the method list() for VolumeTypeManagerVincent Hou2013-12-031-0/+1
| | | | | | | | | | | | | Since the method base.ManagerWithFind.findall has been modified by adding the search_opts for all tenants support, the parameter search_opts should also be added to all the manager classes, which can be called whithin this method. volumetypemanager does not have this parameter for its method list(). Adding search_opts will resolve this issue. Closes-Bug: #1252665 Change-Id: I526500625f1b5483cb5d88ea15e6ac8485a66ae3
* Add assert to delete multiple testAvishay Traeger2013-11-281-0/+1
| | | | | | | | Make sure calls are made to delete both volumes. Also removed redundant fields in v1 fake volume. Closes-Bug: #1253142 Change-Id: I51078041c6d765f28edb155d44928286ee2b0dd6
* Fix typo in cinderclienthuangtianhua2013-11-281-0/+1
| | | | | | | | | sematics --> semantics hypen-separated --> hyphen-separated typicaly --> typically Change-Id: I5df277ef7036082d0e4b079c23d41da809e5270f Closes-Bug: #1254587
* Fix inappropriate comment for set_metadatawanghao2013-11-261-0/+1
| | | | | | | Fix inappropriate comment for the param of set_metadata Change-Id: I01495f59b11ed88389b0e0f2f5fb34289f64dbac Closes-Bug: 1254951
* Add index.rst section for patches merged to masterAvishay Traeger2013-11-141-0/+3
| | | | | | | | Add new section called "MASTER" to the release notes, where all patches that implement blueprints or fix bugs should update the list. This list will be used for the release notes when a new version is released. Change-Id: If842bfbb85851fb7a9e22259423da204f4c308f4
* Update version and index.rst for push1.0.7john-griffith2013-10-301-0/+18
| | | | | | | | | Update prior to push 1.0.7 to PyPi. Includes changes/updates to doc/source/index and adds link to README.rst Change-Id: I666f3e6004885db7a688abdac88fa1154d83f8c9
* Update docs/index.rst with release info for 1.0.61.0.6John Griffith2013-10-041-0/+25
| | | | | | Add features and bugs list for 1.0.6 pypi release. Change-Id: I27134a04670bcfd1bca201ce1e0bba201e8ff98c
* Add a couple more things to index before release1.0.5John Griffith2013-08-061-0/+2
| | | | | | | | Most of the new features are in and oslo req's are synched, making the cut off here and getting a new client version pushed up to PyPi. Change-Id: If208b2341db06b438851d7b2aaab541efc79ea35
* Provide cinder CLI man page.Jakub Ruzicka2013-08-053-4/+69
| | | | | | | | | | | | | | Provide basic but hopefully useful man page. shell.rst was merged into and replaced by the man page in HTML docs. pbr is used to determine version. Docs copyright was changed to more accurate "OpenStack Contributors". Fixes: bug 1206968 Implements: blueprint clients-man-pages Change-Id: Iedd7b4b161ced564833fd9433762b87a4c1a374d
* Update index.rstJohn Griffith2013-07-131-0/+17
| | | | | | | Update the release info in index.rst to get ready to push new version to PyPi. Change-Id: Id3b4b6bfd7374b74bf8566dc133ea66f5d2f74ed
* python3: Fix unicode stringsChuck Short2013-06-131-4/+4
| | | | | | | | | Python3 enforces the distinction between byte strings and text strings more rigorously than python2. So use six.text_type where approiate. Change-Id: I46b3f5fe1f990fc1b7a3ee32904d608b070fc4c3 Signed-off-by: Chuck Short <chuck.short@canonical.com>
* Update release info in index.rst.1.0.4John Griffith2013-05-011-2/+10
| | | | | | Add release notes and fix revision number mishap. Change-Id: Ia48be8462e17c900562b794fd69ba2234f6c6c03
* Docs in cinderlcient were never actually updated.john-griffith2013-03-1911-496/+54
| | | | | | | | | | | | | | Not only were the docs and release info here not being maintainted properly, but the examples that were given were not correct. This change is an attempt to set us on the right path going forward and includes info on how to import the API and history info for the upcoming release/push to PyPi. Fixes bug: 1156994 Change-Id: I169b1c01380ef653a6a25eb8946b9a06d6419e62
* Fixed documentation of the cinder shell command.Frederic Lepied2013-01-313-30/+16
| | | | | | | | Updated README.rst and shell.rst to match changes in the cinder command and novaclient README.rst. Change-Id: Ifaa53d5c06e6d7d8e3d4d858672717954303bea7 Fixes: bug #1074125
* Merge "Change '_' to '-' in options"Jenkins2012-08-301-2/+2
|\
| * Change '_' to '-' in optionsDean Troyer2012-08-231-2/+2
| | | | | | | | | | | | | | | | | | | | This changes every command-line option with a '_' in its name and changes them to '-'. The old option names are maintained for backward compatibility but are no longer in the help text. BP command-options Change-Id: If926bb3b8fa85d628aea197496cf976f71bcdd08
* | Fix PEP8 issues.lrqrun2012-08-291-9/+13
|/ | | | | | Fix some pep8 issues in doc/source/conf.py make the code looks pretty. Change-Id: I4062904dfebf62dddb7ca2cb7b6c547c5026eb54
* Move docs to doc.Clark Boylan2012-06-1514-0/+849
To better facilitate the building and publishing of sphinx documentation by Jenkins we are moving all openstack projects with sphinx documentation to a common doc tree structure. Documentation goes in project/doc and build results go in project/doc/build. Change-Id: I3ae14ac735d9b4c0b534eac9a9c142f8ccaac1b9