Merge "Change database sync timeout from 300 to 900 in low-memory-usage environment...
[apex-tripleo-heat-templates.git] / puppet / services / neutron-plugin-nsx.yaml
1 heat_template_version: pike
2
3 description: >
4   OpenStack Neutron NSX
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   DefaultOverlayTz:
30     description: UUID of the default NSX overlay transport zone.
31     type: string
32   DefaultTier0Router:
33     description: UUID of the default tier0 router that will be used for connecting to
34                  tier1 logical routers and configuring external networks.
35     type: string
36   NsxApiManagers:
37     description: IP address of one or more NSX managers separated by commas.
38     type: string
39   NsxApiUser:
40     description: User name of NSX Manager.
41     type: string
42   NsxApiPassword:
43     description: Password of NSX Manager.
44     type: string
45   NativeDhcpMetadata:
46     default: True
47     description: This is the flag to indicate if using native DHCP/Metadata or not.
48     type: string
49   DhcpProfileUuid:
50     description: This is the UUID of the NSX DHCP Profile that will be used to enable
51                  native DHCP service.
52     type: string
53   MetadataProxyUuid:
54     description: This is the UUID of the NSX Metadata Proxy that will be used to enable
55                  native metadata service.
56     type: string
57
58 outputs:
59   role_data:
60     description: Role data for the Neutron NSX plugin
61     value:
62       service_name: neutron_plugin_nsx
63       config_settings:
64         neutron::plugins::nsx_v3::default_overlay_tz: {get_param: DefaultOverlayTz}
65         neutron::plugins::nsx_v3::default_tier0_router: {get_param: DefaultTier0Router}
66         neutron::plugins::nsx_v3::nsx_api_managers: {get_param: NsxApiManagers}
67         neutron::plugins::nsx_v3::nsx_api_user: {get_param: NsxApiUser}
68         neutron::plugins::nsx_v3::nsx_api_password: {get_param: NsxApiPassword}
69         neutron::plugins::nsx_v3::native_dhcp_metadata: {get_param: NativeDhcpMetadata}
70         neutron::plugins::nsx_v3::dhcp_profile_uuid: {get_param: DhcpProfileUuid}
71         neutron::plugins::nsx_v3::metadata_proxy_uuid: {get_param: MetadataProxyUuid}
72
73       step_config: |
74         include tripleo::profile::base::neutron::plugins::nsx_v3