Merge "Add logging agents deployment to CI"
[apex-tripleo-heat-templates.git] / puppet / services / neutron-l2gw-api.yaml
1 heat_template_version: ocata
2
3 description: >
4   L2 Gateway service plugin configured with Puppet
5
6 parameters:
7   ServiceNetMap:
8     default: {}
9     description: Mapping of service_name -> network name. Typically set
10                  via parameter_defaults in the resource registry.  This
11                  mapping overrides those in ServiceNetMapDefaults.
12     type: json
13   DefaultPasswords:
14     default: {}
15     type: json
16   EndpointMap:
17     default: {}
18     description: Mapping of service endpoint -> protocol. Typically set
19                  via parameter_defaults in the resource registry.
20     type: json
21   L2gwServiceDefaultInterfaceName:
22     default: 'FortyGigE1/0/1'
23     description: default interface name of the L2 gateway
24     type: string
25   L2gwServiceDefaultDeviceName:
26     default: 'Switch1'
27     description: default device name of the L2 gateway
28     type: string
29   L2gwServiceQuotaL2Gateway:
30     default: 5
31     description: quota of the L2 gateway
32     type: number
33   L2gwServicePeriodicMonitoringInterval:
34     default: 5
35     description: The periodic interval at which the plugin
36     type: number
37   L2gwServiceProvider:
38     default: ["L2GW:l2gw:networking_l2gw.services.l2gateway.service_drivers.L2gwDriver:default"]
39     description: Backend to use as a service provider for L2 Gateway
40     type: comma_delimited_list
41
42 outputs:
43   role_data:
44     description: Role data for the L2 Gateway role.
45     value:
46       service_name: neutron_l2gw_api
47       config_settings:
48         neutron::services::l2gw::default_interface_name: {get_param: L2gwServiceDefaultInterfaceName}
49         neutron::services::l2gw::default_device_name: {get_param: L2gwServiceDefaultDeviceName}
50         neutron::services::l2gw::quota_l2_gateway: {get_param: L2gwServiceQuotaL2Gateway}
51         neutron::services::l2gw::periodic_monitoring_interval: {get_param: L2gwServicePeriodicMonitoringInterval}
52         neutron::services::l2gw::service_providers: {get_param: L2gwServiceProvider}
53       step_config: |
54         include tripleo::profile::base::neutron::l2gw