95e05dd4ecd5375870f030cd46558ca158268048
[apex-tripleo-heat-templates.git] / puppet / services / neutron-compute-plugin-ovn.yaml
1 heat_template_version: 2016-04-08
2
3 description: >
4   OpenStack Neutron Compute OVN agent
5
6 parameters:
7   EndpointMap:
8     default: {}
9     description: Mapping of service endpoint -> protocol. Typically set
10                  via parameter_defaults in the resource registry.
11     type: json
12   DefaultPasswords:
13     default: {}
14     type: json
15   ServiceNetMap:
16     default: {}
17     description: Mapping of service_name -> network name. Typically set
18                  via parameter_defaults in the resource registry.  This
19                  mapping overrides those in ServiceNetMapDefaults.
20     type: json
21   OVNDbHost:
22     description: IP address on which the OVN DB servers are listening
23     type: string
24   OVNSouthboundServerPort:
25     description: Port of the Southbound DB Server
26     type: number
27     default: 6642
28   OVNTunnelEncapType:
29     description: Tunnel encapsulation type
30     type: string
31     default: geneve
32
33
34 outputs:
35   role_data:
36     description: Role data for the Neutron Compute OVN agent
37     value:
38       service_name: neutron_compute_plugin_ovn
39       config_settings:
40         tripleo::profile::base::neutron::agents::ovn::ovn_db_host: {get_param: OVNDbHost}
41         ovn::southbound::port: {get_param: OVNSouthboundServerPort}
42         ovn::southbound::encap_type: {get_param: OVNTunnelEncapType}
43         ovn::controller::ovn_encap_ip: {get_param: [ServiceNetMap, NeutronApiNetwork]}
44       step_config: |
45         include ::tripleo::profile::base::neutron::agents::ovn