diff options
author | Jenkins <jenkins@review.openstack.org> | 2016-05-11 12:48:35 +0000 |
---|---|---|
committer | Gerrit Code Review <review@openstack.org> | 2016-05-11 12:48:35 +0000 |
commit | 0d3dacec4b63fb168f4f039501dc6e7b9622315b (patch) | |
tree | 7a4d9deadd321757a8153c4e649b09585e273d68 /puppet/services/pacemaker | |
parent | c2cd6f01dc18901a33bd04ffe71ef00613fc3744 (diff) | |
parent | 27f7d220bd5a9d0a1deebe16dd1d6a3dee11af82 (diff) |
Merge "composable neutron dhcp service"
Diffstat (limited to 'puppet/services/pacemaker')
-rw-r--r-- | puppet/services/pacemaker/neutron-dhcp.yaml | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/puppet/services/pacemaker/neutron-dhcp.yaml b/puppet/services/pacemaker/neutron-dhcp.yaml new file mode 100644 index 00000000..4be711ca --- /dev/null +++ b/puppet/services/pacemaker/neutron-dhcp.yaml @@ -0,0 +1,33 @@ +heat_template_version: 2016-04-08 + +description: > + OpenStack Neutron DHCP service 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 + MysqlVirtualIPUri: + type: string + default: '' + +resources: + + NeutronDhcpBase: + type: ../neutron-dhcp.yaml + properties: + EndpointMap: {get_param: EndpointMap} + MysqlVirtualIPUri: {get_param: MysqlVirtualIPUri} + +outputs: + role_data: + description: Role data for the Neutron DHCP role. + value: + config_settings: + map_merge: + - get_attr: [NeutronDhcpBase, role_data, config_settings] + - tripleo::profile::pacemaker::neutron::enable_dhcp: True + step_config: | + include ::tripleo::profile::pacemaker::neutron::dhcp |