Update the template_version alias for all the templates to pike.
[apex-tripleo-heat-templates.git] / puppet / services / neutron-l2gw-api.yaml
1 heat_template_version: pike
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   RoleName:
17     default: ''
18     description: Role name on which the service is applied
19     type: string
20   RoleParameters:
21     default: {}
22     description: Parameters specific to the role
23     type: json
24   EndpointMap:
25     default: {}
26     description: Mapping of service endpoint -> protocol. Typically set
27                  via parameter_defaults in the resource registry.
28     type: json
29   L2gwServiceDefaultInterfaceName:
30     default: 'FortyGigE1/0/1'
31     description: default interface name of the L2 gateway
32     type: string
33   L2gwServiceDefaultDeviceName:
34     default: 'Switch1'
35     description: default device name of the L2 gateway
36     type: string
37   L2gwServiceQuotaL2Gateway:
38     default: 5
39     description: quota of the L2 gateway
40     type: number
41   L2gwServicePeriodicMonitoringInterval:
42     default: 5
43     description: The periodic interval at which the plugin
44     type: number
45   L2gwServiceProvider:
46     default: ["L2GW:l2gw:networking_l2gw.services.l2gateway.service_drivers.L2gwDriver:default"]
47     description: Backend to use as a service provider for L2 Gateway
48     type: comma_delimited_list
49
50 outputs:
51   role_data:
52     description: Role data for the L2 Gateway role.
53     value:
54       service_name: neutron_l2gw_api
55       config_settings:
56         neutron::services::l2gw::default_interface_name: {get_param: L2gwServiceDefaultInterfaceName}
57         neutron::services::l2gw::default_device_name: {get_param: L2gwServiceDefaultDeviceName}
58         neutron::services::l2gw::quota_l2_gateway: {get_param: L2gwServiceQuotaL2Gateway}
59         neutron::services::l2gw::periodic_monitoring_interval: {get_param: L2gwServicePeriodicMonitoringInterval}
60         neutron::services::l2gw::service_providers: {get_param: L2gwServiceProvider}
61       step_config: |
62         include tripleo::profile::base::neutron::l2gw