Merge "Add NovaApiMaxLimit configure max_limit for nova" into stable/victoria

This commit is contained in:
Zuul 2020-12-22 02:24:01 +00:00 committed by Gerrit Code Review
commit a38e922b56
2 changed files with 10 additions and 0 deletions

View File

@ -101,6 +101,10 @@ parameters:
default: false
description: Allow destination machine to match source for resize.
type: boolean
NovaApiMaxLimit:
default: 1000
description: Max number of objects returned per API query
type: number
parameter_groups:
- label: deprecated
@ -194,6 +198,7 @@ outputs:
nova::keystone::authtoken::auth_url: {get_param: [EndpointMap, KeystoneInternal, uri_no_suffix]}
nova::keystone::authtoken::region_name: {get_param: KeystoneRegion}
nova::keystone::authtoken::interface: 'internal'
nova::api::max_limit: {get_param: NovaApiMaxLimit}
nova::api::enabled: true
nova::api::default_floating_pool: {get_param: NovaDefaultFloatingPool}
nova::api::enable_proxy_headers_parsing: true

View File

@ -0,0 +1,5 @@
---
features:
- |
The NovaApiMaxLimit parameter allows the operator to set Nova API
max_limit using a Heat parameter in their templates.