cdda44028a
This patch is fixing following issues, which makes rsyslog service to fail to start successfully: - Changes LoggingSource configuration key 'path' to 'file' for various services - Fixes LoggingSource configuration key 'startmsg.regex' for pacemaker - Removes nonexistent log files from LoggingSource of keystone Change-Id: I7fe6456a1d2a3ba4300a82c57b76774152422250
112 lines
3.8 KiB
YAML
112 lines
3.8 KiB
YAML
heat_template_version: rocky
|
|
|
|
description: >
|
|
L2 Gateway agent configured with Puppet
|
|
parameters:
|
|
ServiceData:
|
|
default: {}
|
|
description: Dictionary packing service data
|
|
type: json
|
|
ServiceNetMap:
|
|
default: {}
|
|
description: Mapping of service_name -> network name. Typically set
|
|
via parameter_defaults in the resource registry. This
|
|
mapping overrides those in ServiceNetMapDefaults.
|
|
type: json
|
|
Debug:
|
|
type: boolean
|
|
default: false
|
|
description: Set to True to enable debugging on all services.
|
|
DefaultPasswords:
|
|
default: {}
|
|
type: json
|
|
RoleName:
|
|
default: ''
|
|
description: Role name on which the service is applied
|
|
type: string
|
|
RoleParameters:
|
|
default: {}
|
|
description: Parameters specific to the role
|
|
type: json
|
|
EndpointMap:
|
|
default: {}
|
|
description: Mapping of service endpoint -> protocol. Typically set
|
|
via parameter_defaults in the resource registry.
|
|
type: json
|
|
L2gwAgentOvsdbHosts:
|
|
default: ''
|
|
description: L2 gateway agent OVSDB server list.
|
|
type: comma_delimited_list
|
|
L2gwAgentEnableManager:
|
|
default: false
|
|
description: Connection can be initiated by the ovsdb server.
|
|
type: boolean
|
|
L2gwAgentManagerTableListeningPort:
|
|
default: 6632
|
|
description: port number for L2 gateway agent, so that it can listen
|
|
type: number
|
|
L2gwAgentPeriodicInterval:
|
|
default: 20
|
|
description: The L2 gateway agent checks connection state with the OVSDB
|
|
servers. The interval is number of seconds between attempts.
|
|
type: number
|
|
L2gwAgentMaxConnectionRetries:
|
|
default: 10
|
|
description: The L2 gateway agent retries to connect to the OVSDB server
|
|
type: number
|
|
L2gwAgentSocketTimeout:
|
|
default: 30
|
|
description: socket timeout
|
|
type: number
|
|
MonitoringSubscriptionNeutronL2gwAgent:
|
|
default: 'overcloud-neutron-l2gw-agent'
|
|
type: string
|
|
NeutronL2gwAgentDebug:
|
|
default: ''
|
|
description: Set to True to enable debugging for Neutron L2gw agent.
|
|
type: string
|
|
constraints:
|
|
- allowed_values: [ '', 'true', 'True', 'TRUE', 'false', 'False', 'FALSE']
|
|
NeutronL2gwAgentLoggingSource:
|
|
type: json
|
|
default:
|
|
tag: openstack.neutron.agent.l2gw
|
|
file: /var/log/neutron/l2gw-agent.log
|
|
|
|
conditions:
|
|
service_debug_unset: {equals: [{get_param: NeutronL2gwAgentDebug}, '']}
|
|
internal_manager_enabled: {equals: [{get_param: L2gwAgentEnableManager}, True]}
|
|
|
|
outputs:
|
|
role_data:
|
|
description: Role data for the L2 Gateway role.
|
|
value:
|
|
service_name: neutron_l2gw_agent
|
|
if:
|
|
- internal_manager_enabled
|
|
- firewall_rules:
|
|
'142 neutron l2gw agent input':
|
|
proto: 'tcp'
|
|
dport: {get_param: L2gwAgentManagerTableListeningPort}
|
|
- null
|
|
monitoring_subscription: {get_param: MonitoringSubscriptionNeutronL2gwAgent}
|
|
config_settings:
|
|
neutron::agents::l2gw::ovsdb_hosts: {get_param: L2gwAgentOvsdbHosts}
|
|
neutron::agents::l2gw::enable_manager: {get_param: L2gwAgentEnableManager}
|
|
neutron::agents::l2gw::manager_table_listening_port: {get_param: L2gwAgentManagerTableListeningPort}
|
|
neutron::agents::l2gw::periodic_interval: {get_param: L2gwAgentPeriodicInterval}
|
|
neutron::agents::l2gw::max_connection_retries: {get_param: L2gwAgentMaxConnectionRetries}
|
|
neutron::agents::l2gw::socket_timeout: {get_param: L2gwAgentSocketTimeout}
|
|
neutron::agents::l2gw::debug:
|
|
if:
|
|
- service_debug_unset
|
|
- {get_param: Debug}
|
|
- {get_param: NeutronL2gwAgentDebug}
|
|
service_config_settings:
|
|
rsyslog:
|
|
tripleo_logging_sources_neutron_l2gw_agent:
|
|
- {get_param: NeutronL2gwAgentLoggingSource}
|
|
step_config: |
|
|
include tripleo::profile::base::neutron::agents::l2gw
|
|
upgrade_tasks: []
|