diff options
author | Emilien Macchi <emilien@redhat.com> | 2016-07-20 16:17:05 -0400 |
---|---|---|
committer | Emilien Macchi <emilien@redhat.com> | 2016-07-21 13:41:14 +0000 |
commit | 1d38b753672cbd41e24a092c26d7aa5f5e0e69c3 (patch) | |
tree | 1988bdc0449482a49a703d83ceeb37211c60353d /puppet/services | |
parent | 541631ac9092910a42f51bfbc2b7314d76299d05 (diff) |
Deploy Horizon with composable apache service
Deploy Horizon with composable apache service and don't include:
::tripleo::profile::pacemaker::apache
Because it's already included in the profiles in puppet-tripleo.
Change-Id: I5382d5cc95ba10805019142a9a223dbd4a4b8074
Depends-On: Id28c618133e53e28dfac7e3e9cf9f5f5a6b2421a
Diffstat (limited to 'puppet/services')
-rw-r--r-- | puppet/services/pacemaker/horizon.yaml | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/puppet/services/pacemaker/horizon.yaml b/puppet/services/pacemaker/horizon.yaml new file mode 100644 index 00000000..ea76896e --- /dev/null +++ b/puppet/services/pacemaker/horizon.yaml @@ -0,0 +1,28 @@ +heat_template_version: 2016-04-08 + +description: > + Horizon 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 + +resources: + + HorizonBase: + type: ../horizon.yaml + properties: + EndpointMap: {get_param: EndpointMap} + +outputs: + role_data: + description: Role data for the Horizon role. + value: + config_settings: + get_attr: [HorizonBase, role_data, config_settings] + step_config: | + include ::tripleo::profile::base::horizon + include ::tripleo::profile::pacemaker::apache |