Expose the zaqar_ws_timeout_tunnel variable.

It can now be configured using a new Heat parameter:
ZaqarWsTimeout.

Depends-On: https://review.opendev.org/728974
Change-Id: I4328d4bafb556e5936793e8a58c3e19635b37406
Signed-off-by: Luke Short <ekultails@gmail.com>
(cherry picked from commit d3207d8a60)
This commit is contained in:
Luke Short 2020-05-18 14:20:31 -04:00
parent 83d3ea70ea
commit 87f943512d
2 changed files with 12 additions and 0 deletions

View File

@ -108,6 +108,10 @@ parameters:
default: '/etc/pki/CA/crl/'
type: string
description: The directory of the CRL PEM file to be mounted.
ZaqarWsTimeout:
default: '14400'
type: string
description: The tunnel timeout in seconds for the Zaqar API.
conditions:
puppet_debug_enabled: {get_param: ConfigDebug}
@ -178,6 +182,7 @@ outputs:
tripleo::haproxy::redis_password: {get_param: RedisPassword}
tripleo::haproxy::crl_file: {get_param: InternalTLSCRLPEMFile}
tripleo::haproxy::haproxy_stats: {get_param: HAProxyStatsEnabled}
tripleo::haproxy::zaqar_ws_timeout_tunnel: {get_param: ZaqarWsTimeout}
enable_load_balancer: {get_param: EnableLoadBalancer}
tripleo::profile::base::haproxy::certificates_specs:
map_merge:

View File

@ -0,0 +1,7 @@
---
features:
- |
A new Heat parameter 'ZaqarWsTimeout' exposes the Puppet variable
'tripleo::haproxy::zaqar_ws_timeout_tunnel'. This allows operators
to configure the Mistral API timeout. It currently defaults to four
hours.