diff options
author | Dan Prince <dprince@redhat.com> | 2016-06-23 10:52:43 -0400 |
---|---|---|
committer | Emilien Macchi <emilien@redhat.com> | 2016-07-08 14:44:05 +0000 |
commit | 800ee92b751ccdc8adc3375b765705f0c121f8d9 (patch) | |
tree | b973bbdec637785919ac809964b63961fa63d570 /puppet/services/pacemaker | |
parent | 88f83fe8ccfa4cb080c482d87b54965218264535 (diff) |
Composable Midonet for Neutron
Depends-On: I2393fc3c360f5f5786411f64dbcd06f380376093
Change-Id: I606cb1f7ef7d651b5d145bfa10ef3aa1561b1590
Partially-implements: blueprint composable-services-within-roles
Diffstat (limited to 'puppet/services/pacemaker')
-rw-r--r-- | puppet/services/pacemaker/neutron-midonet.yaml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/puppet/services/pacemaker/neutron-midonet.yaml b/puppet/services/pacemaker/neutron-midonet.yaml new file mode 100644 index 00000000..f9fd992c --- /dev/null +++ b/puppet/services/pacemaker/neutron-midonet.yaml @@ -0,0 +1,28 @@ +heat_template_version: 2016-04-08 + +description: > + OpenStack Neutron Midonet with Pacemaker configured with Puppet + +parameters: + EndpointMap: + default: {} + description: Mapping of service endpoint -> protocol. Typically set + via parameter_defaults in the resource registry. + type: json + +resources: + + NeutronMidonetBase: + type: ../neutron-midonet.yaml + properties: + EndpointMap: {get_param: EndpointMap} + +outputs: + role_data: + description: Role data for the Neutron Midonet plugin. + value: + config_settings: + map_merge: + - get_attr: [NeutronMidonetBase, role_data, config_settings] + step_config: | + include ::tripleo::profile::pacemaker::neutron::plugins::midonet |