Update v2/info/stores api-ref
Slight rewrite of the stores discovery section of the api-ref to indicate which elements of the response are optional and to remove mention of the store type from the descriptions. Change-Id: I8261de878fcaff1e498f7a3e152df7d980d0560c
This commit is contained in:
parent
f930288120
commit
6537ff2136
@ -3,10 +3,18 @@ stores:
|
|||||||
A list of store objects, where each store object may contain the
|
A list of store objects, where each store object may contain the
|
||||||
following fields:
|
following fields:
|
||||||
|
|
||||||
- ``id``
|
``id``
|
||||||
- ``description``
|
Operator-defined identifier for the store.
|
||||||
- ``default``
|
``description``
|
||||||
- ``read-only``
|
Operator-supplied description of this store.
|
||||||
|
``default`` (optional)
|
||||||
|
Only present on the default store. This is the store where image
|
||||||
|
data is placed if you do not indicate a specific store when supplying
|
||||||
|
data to the Image Service. (See the :ref:`Image data <image-data>`
|
||||||
|
and :ref:`Interoperable image import <image-import-process>` sections
|
||||||
|
for more information.)
|
||||||
|
``read-only`` (optional)
|
||||||
|
Included only when the store is read only.
|
||||||
in: body
|
in: body
|
||||||
required: true
|
required: true
|
||||||
type: array
|
type: array
|
||||||
|
@ -70,9 +70,8 @@ as a part of the EXPERIMENTAL Image API v2.8.
|
|||||||
|
|
||||||
.. note:: The Multi Store feature is introduced as EXPERIMENTAL in Rocky and
|
.. note:: The Multi Store feature is introduced as EXPERIMENTAL in Rocky and
|
||||||
its use in production systems is currently **not supported**.
|
its use in production systems is currently **not supported**.
|
||||||
However we encourage people to use this feature for testing
|
The feature is being finalized during the Train development
|
||||||
purposes and report the issues so that we can make it stable and
|
cycle and is expected to be fully supported in Image API v2.9.
|
||||||
fully supported in Stein release.
|
|
||||||
|
|
||||||
In version 2.7 of the API, this call will return a 404 (Not Found).
|
In version 2.7 of the API, this call will return a 404 (Not Found).
|
||||||
Use the :ref:`API versions call <versions-call>` to determine
|
Use the :ref:`API versions call <versions-call>` to determine
|
||||||
|
@ -2,20 +2,20 @@
|
|||||||
"stores": [
|
"stores": [
|
||||||
{
|
{
|
||||||
"id":"reliable",
|
"id":"reliable",
|
||||||
"description": "Reliable filesystem store"
|
"description": "More expensive store with data redundancy"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id":"fast",
|
"id":"fast",
|
||||||
"description": "Fast access to rbd store",
|
"description": "Provides quick access to your image data",
|
||||||
"default": true
|
"default": true
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id":"cheap",
|
"id":"cheap",
|
||||||
"description": "Less expensive rbd store"
|
"description": "Less expensive store for seldom-used images"
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
"id":"read_only_store",
|
"id":"special",
|
||||||
"description": "Read only http store",
|
"description": "Need a plausible description here that doesn't expose the store type",
|
||||||
"read-only": true
|
"read-only": true
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
|
Loading…
Reference in New Issue
Block a user