Adds config options to limit image properties and members
This patch adds new options from: https://review.openstack.org/#/c/59563/2 https://review.openstack.org/#/c/56981/8 Change-Id: I808938fa316d084d77fbafb72254d485e1be3e02 Closes-Bug: #1254645 Closes-Bug: #1257528
This commit is contained in:
parent
b4d46442f6
commit
9a8949a3a5
@ -43,6 +43,18 @@
|
|||||||
<td>disable_process_locking = False</td>
|
<td>disable_process_locking = False</td>
|
||||||
<td>(BoolOpt) Whether to disable inter-process locks</td>
|
<td>(BoolOpt) Whether to disable inter-process locks</td>
|
||||||
</tr>
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>image_member_quota = 128</td>
|
||||||
|
<td>(IntOpt) Maximum number of image members per image. Negative values evaluate to unlimited.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>image_property_quota = 128</td>
|
||||||
|
<td>(IntOpt) Maximum number of properties allowed on an image. Negative values evaluate to unlimited.</td>
|
||||||
|
</tr>
|
||||||
|
<tr>
|
||||||
|
<td>image_tag_quota = 128</td>
|
||||||
|
<td>(IntOpt) Maximum number of tags allowed on an image. Negative values evaluate to unlimited.</td>
|
||||||
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>limit_param_default = 25</td>
|
<td>limit_param_default = 25</td>
|
||||||
<td>(IntOpt) Default value for the number of items returned by a request if not specified explicitly in the request</td>
|
<td>(IntOpt) Default value for the number of items returned by a request if not specified explicitly in the request</td>
|
||||||
@ -73,7 +85,7 @@
|
|||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>use_tpool = False</td>
|
<td>use_tpool = False</td>
|
||||||
<td>(BoolOpt) Enable the use of thread pooling for all DB API calls</td>
|
<td>(BoolOpt) Enable the experimental use of thread pooling for all DB API calls</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr>
|
<tr>
|
||||||
<td>user_storage_quota = 0</td>
|
<td>user_storage_quota = 0</td>
|
||||||
@ -85,4 +97,4 @@
|
|||||||
</tr>
|
</tr>
|
||||||
</tbody>
|
</tbody>
|
||||||
</table>
|
</table>
|
||||||
</para>
|
</para>
|
||||||
|
@ -44,7 +44,10 @@ image_cache_driver imagecache
|
|||||||
image_cache_max_size imagecache
|
image_cache_max_size imagecache
|
||||||
image_cache_sqlite_db imagecache
|
image_cache_sqlite_db imagecache
|
||||||
image_cache_stall_time imagecache
|
image_cache_stall_time imagecache
|
||||||
|
image_member_quota common
|
||||||
|
image_property_quota common
|
||||||
image_size_cap api
|
image_size_cap api
|
||||||
|
image_tag_quota common
|
||||||
instance_format logging
|
instance_format logging
|
||||||
instance_uuid_format logging
|
instance_uuid_format logging
|
||||||
key_file ssl
|
key_file ssl
|
||||||
|
Loading…
Reference in New Issue
Block a user