diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-06-23 03:58:25 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-06-23 03:58:25 +0000 |
commit | 23ec8e1509717bb230f77096d3892812f3e67c14 (patch) | |
tree | 047c18b0da5cfbdd743989741d8d4df022794173 /puppet/services | |
parent | f32de519adb072ee5ca38b01044f983ac4437444 (diff) | |
parent | 37bb689a0fe37e9365373dbd47291a4323d36bd7 (diff) |
Merge "Composable opencontrail plugin"
Diffstat (limited to 'puppet/services')
-rw-r--r-- | puppet/services/neutron-plugin-opencontrail.yaml | 26 | ||||
-rw-r--r-- | puppet/services/pacemaker/neutron-plugin-opencontrail.yaml | 28 |
2 files changed, 54 insertions, 0 deletions
diff --git a/puppet/services/neutron-plugin-opencontrail.yaml b/puppet/services/neutron-plugin-opencontrail.yaml new file mode 100644 index 00000000..c6499e2e --- /dev/null +++ b/puppet/services/neutron-plugin-opencontrail.yaml @@ -0,0 +1,26 @@ +heat_template_version: 2016-04-08 + +description: > + OpenStack Neutron Opencontrail plugin + +parameters: + EndpointMap: + default: {} + description: Mapping of service endpoint -> protocol. Typically set + via parameter_defaults in the resource registry. + type: json + +resources: + + NeutronBase: + type: ./neutron-base.yaml + +outputs: + role_data: + description: Role data for the Neutron Opencontrail plugin + value: + config_settings: + map_merge: + - get_attr: [NeutronBase, role_data, config_settings] + step_config: | + include tripleo::profile::base::neutron::plugins::opencontrail diff --git a/puppet/services/pacemaker/neutron-plugin-opencontrail.yaml b/puppet/services/pacemaker/neutron-plugin-opencontrail.yaml new file mode 100644 index 00000000..d8c75509 --- /dev/null +++ b/puppet/services/pacemaker/neutron-plugin-opencontrail.yaml @@ -0,0 +1,28 @@ +heat_template_version: 2016-04-08 + +description: > + OpenStack Neutron OpenContrail Plugin 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: + + NeutronPluginOpenContrail: + type: ../neutron-plugin-nuage.yaml + properties: + EndpointMap: {get_param: EndpointMap} + +outputs: + role_data: + description: Role data for the Neutron OpenContrail plugin. + value: + config_settings: + map_merge: + - get_attr: [NeutronPluginOpenContrail, role_data, config_settings] + step_config: | + include ::tripleo::profile::pacemaker::neutron::plugins::opencontrail |