Merge "[Octavia] Set octavia *_log_targets params with tripleo-ansible"

This commit is contained in:
Zuul 2023-01-13 13:46:17 +00:00 committed by Gerrit Code Review
commit c8607e3ae2
2 changed files with 12 additions and 12 deletions

View File

@ -166,11 +166,6 @@ parameters:
default: 300
description: Seconds to wait for a port to detach from an amphora.
type: number
OctaviaAdminLogTargets:
default: []
description: List of syslog endpoints, host:port comma separated list,
to receive administrative log messages.
type: comma_delimited_list
OctaviaAdminLogFacility:
default: 1
description: The syslog "LOG_LOCAL" facility to use for the administrative
@ -185,11 +180,6 @@ parameters:
to the administrative log endpoints, including non-load
balancing related logs.
type: boolean
OctaviaTenantLogTargets:
default: []
description: List of syslog endpoints, host:port comma separated list,
to receive tenant traffic flow log messages.
type: comma_delimited_list
OctaviaTenantLogFacility:
default: 0
description: The syslog "LOG_LOCAL" facility to use for the tenant
@ -311,10 +301,8 @@ outputs:
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::admin_log_targets: {get_param: OctaviaAdminLogTargets}
octavia::controller::administrative_log_facility: {get_param: OctaviaAdminLogFacility}
octavia::controller::forward_all_logs: {get_param: OctaviaForwardAllLogs}
octavia::controller::tenant_log_targets: {get_param: OctaviaTenantLogTargets}
octavia::controller::user_log_facility: {get_param: OctaviaTenantLogFacility}
octavia::controller::user_log_format:
if:

View File

@ -200,6 +200,16 @@ parameters:
default: true
description: Configure the nova flavor for the amphora.
type: boolean
OctaviaAdminLogTargets:
default: []
description: List of syslog endpoints, host:port comma separated list,
to receive administrative log messages.
type: comma_delimited_list
OctaviaTenantLogTargets:
default: []
description: List of syslog endpoints, host:port comma separated list,
to receive tenant traffic flow log messages.
type: comma_delimited_list
conditions:
octavia_raw_image_check:
@ -266,6 +276,8 @@ outputs:
octavia_flavor_id: { get_param: OctaviaFlavorId }
octavia_flavor_properties: { get_param: OctaviaFlavorProperties }
octavia_manage_nova_flavor: { get_param: OctaviaManageNovaFlavor }
octavia_admin_log_targets: { get_param: OctaviaAdminLogTargets }
octavia_tenant_log_targets: { get_param: OctaviaTenantLogTargets }
no_log: "{{ hide_sensitive_logs | bool }}"
- name: Make needed directories on the undercloud
become: true