Merge "Added the connection_logging parameter for Octavia" into stable/rocky

This commit is contained in:
Zuul 2019-11-02 16:41:55 +00:00 committed by Gerrit Code Review
commit 0efcf364bb
2 changed files with 8 additions and 0 deletions

View File

@ -56,6 +56,10 @@ parameters:
default: 120
description: Retry threshold for connecting to amphorae.
type: number
OctaviaConnectionLogging:
default: true
description: When false, tenant connection flows will not be logged.
type: boolean
OctaviaBuildActiveRetries:
default: 120
description: Retry threshold for waiting for a build slot for an amphorae.
@ -94,6 +98,7 @@ outputs:
octavia::controller::amp_ssh_key_name: {get_param: OctaviaAmphoraSshKeyName}
octavia::controller::enable_ssh_access: true
octavia::controller::connection_max_retries: {get_param: OctaviaConnectionMaxRetries}
octavia::controller::connection_logging: {get_param: OctaviaConnectionLogging}
octavia::controller::build_active_retries: {get_param: OctaviaBuildActiveRetries}
octavia::controller::port_detach_timeout: {get_param: OctaviaPortDetachTimeout}
-

View File

@ -0,0 +1,3 @@
---
features:
- Added the "connection_logging" parameter for the Octavia service.