Merge "Add NeutronGlobalPhysnetMtu to neutron-base.yaml"
[apex-tripleo-heat-templates.git] / puppet / services / gnocchi-api.yaml
1 heat_template_version: 2016-04-08
2
3 description: >
4   Gnocchi service configured with Puppet
5
6 parameters:
7   ServiceNetMap:
8     default: {}
9     description: Mapping of service_name -> network name. Typically set
10                  via parameter_defaults in the resource registry.  This
11                  mapping overrides those in ServiceNetMapDefaults.
12     type: json
13   DefaultPasswords:
14     default: {}
15     type: json
16   EndpointMap:
17     default: {}
18     description: Mapping of service endpoint -> protocol. Typically set
19                  via parameter_defaults in the resource registry.
20     type: json
21   GnocchiPassword:
22     description: The password for the gnocchi service and db account.
23     type: string
24     hidden: true
25   GnocchiBackend:
26     default: swift
27     description: The short name of the Gnocchi backend to use. Should be one
28       of swift, rbd, or file
29     type: string
30     constraints:
31     - allowed_values: ['swift', 'file', 'rbd']
32   KeystoneRegion:
33     type: string
34     default: 'regionOne'
35     description: Keystone region for endpoint
36
37 resources:
38
39   GnocchiServiceBase:
40     type: ./gnocchi-base.yaml
41     properties:
42       ServiceNetMap: {get_param: ServiceNetMap}
43       DefaultPasswords: {get_param: DefaultPasswords}
44       EndpointMap: {get_param: EndpointMap}
45
46   ApacheServiceBase:
47     type: ./apache.yaml
48     properties:
49       ServiceNetMap: {get_param: ServiceNetMap}
50       DefaultPasswords: {get_param: DefaultPasswords}
51       EndpointMap: {get_param: EndpointMap}
52
53 outputs:
54   role_data:
55     description: Role data for the Gnocchi role.
56     value:
57       service_name: gnocchi_api
58       config_settings:
59         map_merge:
60           - get_attr: [ApacheServiceBase, role_data, config_settings]
61           - get_attr: [GnocchiServiceBase, role_data, config_settings]
62           - tripleo.gnocchi_api.firewall_rules:
63               '129 gnocchi-api':
64                 dport:
65                   - 8041
66                   - 13041
67             gnocchi::api::enabled: true
68             gnocchi::api::service_name: 'httpd'
69             gnocchi::keystone::auth::admin_url: { get_param: [ EndpointMap, GnocchiAdmin, uri ] }
70             gnocchi::keystone::auth::internal_url: {get_param: [EndpointMap, GnocchiInternal, uri]}
71             gnocchi::keystone::auth::password: {get_param: GnocchiPassword}
72             gnocchi::keystone::auth::public_url: { get_param: [ EndpointMap, GnocchiPublic, uri ] }
73             gnocchi::keystone::auth::region: {get_param: KeystoneRegion}
74             gnocchi::keystone::auth::tenant: 'service'
75             gnocchi::keystone::authtoken::auth_uri: {get_param: [EndpointMap, KeystoneInternal, uri]}
76             gnocchi::keystone::authtoken::auth_url: {get_param: [EndpointMap, KeystoneAdmin, uri_no_suffix]}
77             gnocchi::keystone::authtoken::password: {get_param: GnocchiPassword}
78             gnocchi::keystone::authtoken::project_name: 'service'
79             gnocchi::wsgi::apache::ssl: false
80             tripleo::profile::base::gnocchi::api::gnocchi_backend: {get_param: GnocchiBackend}
81             # NOTE: bind IP is found in Heat replacing the network name with the
82             # local node IP for the given network; replacement examples
83             # (eg. for internal_api):
84             # internal_api -> IP
85             # internal_api_uri -> [IP]
86             # internal_api_subnet - > IP/CIDR
87             gnocchi::wsgi::apache::bind_host: {get_param: [ServiceNetMap, GnocchiApiNetwork]}
88             gnocchi::api::host: {get_param: [ServiceNetMap, GnocchiApiNetwork]}
89
90             gnocchi::api::keystone_auth_uri: {get_param: [EndpointMap, KeystoneInternal, uri]}
91             gnocchi::api::keystone_identity_uri: {get_param: [EndpointMap, KeystoneAdmin, uri_no_suffix]}
92             gnocchi::storage::swift::swift_authurl: {get_param: [EndpointMap, KeystoneInternal, uri]}
93       step_config: |
94         include ::tripleo::profile::base::gnocchi::api