Merge "Disable the Mon/OSD/Client resources in puppet-ceph-external"
[apex-tripleo-heat-templates.git] / puppet / services / sahara-api.yaml
1 heat_template_version: 2016-04-08
2
3 description: >
4   OpenStack Sahara API 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   SaharaPassword:
22     description: The password for the sahara service account, used by sahara-api.
23     type: string
24     hidden: true
25   SaharaWorkers:
26     default: 0
27     description: The number of workers for the sahara-api.
28     type: number
29   KeystoneRegion:
30     type: string
31     default: 'regionOne'
32     description: Keystone region for endpoint
33
34 resources:
35   SaharaBase:
36     type: ./sahara-base.yaml
37     properties:
38       ServiceNetMap: {get_param: ServiceNetMap}
39       DefaultPasswords: {get_param: DefaultPasswords}
40       EndpointMap: {get_param: EndpointMap}
41
42 outputs:
43   role_data:
44     description: Role data for the Sahara API role.
45     value:
46       service_name: sahara_api
47       config_settings:
48         map_merge:
49           - get_attr: [SaharaBase, role_data, config_settings]
50           - sahara::port: {get_param: [EndpointMap, SaharaInternal, port]}
51             sahara::service::api::api_workers: {get_param: SaharaWorkers}
52             sahara::keystone::auth::public_url: {get_param: [EndpointMap, SaharaPublic, uri]}
53             sahara::keystone::auth::internal_url: {get_param: [EndpointMap, SaharaInternal, uri]}
54             sahara::keystone::auth::admin_url: {get_param: [EndpointMap, SaharaAdmin, uri]}
55             sahara::keystone::auth::password: {get_param: SaharaPassword }
56             sahara::keystone::auth::region: {get_param: KeystoneRegion}
57             tripleo.sahara_api.firewall_rules:
58               '132 sahara':
59                 dport:
60                   - 8386
61                   - 13386
62       step_config: |
63         include ::tripleo::profile::base::sahara::api