Merge "Add ClientRetryLimit parameter for heat"

This commit is contained in:
Zuul 2019-12-13 09:22:43 +00:00 committed by Gerrit Code Review
commit 24f0613d2c
2 changed files with 9 additions and 0 deletions

View File

@ -106,6 +106,10 @@ parameters:
type: boolean
default: false
description: Create delegated roles
ClientRetryLimit:
type: number
default: 2
description: Client retries for transient errors.
conditions:
heat_workers_unset: {equals : [{get_param: HeatWorkers}, 0]}
@ -159,6 +163,7 @@ outputs:
port: {get_param: [EndpointMap, HeatCfnPublic, port]}
path: /v1/waitcondition
heat::engine::convergence_engine: {get_param: HeatConvergenceEngine}
heat::engine::client_retry_limit: {get_param: ClientRetryLimit}
tripleo::profile::base::heat::manage_db_purge: {get_param: HeatEnableDBPurge}
heat::database_connection:
make_url:

View File

@ -0,0 +1,4 @@
---
features:
- Adds parameter for configuring heat client_retry_limit config
option to increase the number of retries for transient errors.