Merge "Add fluentd client service"
[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   MonitoringSubscriptionSaharaApi:
34     default: 'overcloud-sahara-api'
35     type: string
36   SaharaApiLoggingSource:
37     type: json
38     default:
39       tag: openstack.sahara.api
40       path: /var/log/sahara/sahara-api.log
41
42 resources:
43   SaharaBase:
44     type: ./sahara-base.yaml
45     properties:
46       ServiceNetMap: {get_param: ServiceNetMap}
47       DefaultPasswords: {get_param: DefaultPasswords}
48       EndpointMap: {get_param: EndpointMap}
49
50 outputs:
51   role_data:
52     description: Role data for the Sahara API role.
53     value:
54       service_name: sahara_api
55       monitoring_subscription: {get_param: MonitoringSubscriptionSaharaApi}
56       logging_source: {get_param: SaharaApiLoggingSource}
57       logging_groups:
58         - sahara
59       config_settings:
60         map_merge:
61           - get_attr: [SaharaBase, role_data, config_settings]
62           - sahara::port: {get_param: [EndpointMap, SaharaInternal, port]}
63             sahara::service::api::api_workers: {get_param: SaharaWorkers}
64             sahara::keystone::auth::public_url: {get_param: [EndpointMap, SaharaPublic, uri]}
65             sahara::keystone::auth::internal_url: {get_param: [EndpointMap, SaharaInternal, uri]}
66             sahara::keystone::auth::admin_url: {get_param: [EndpointMap, SaharaAdmin, uri]}
67             sahara::keystone::auth::password: {get_param: SaharaPassword }
68             sahara::keystone::auth::region: {get_param: KeystoneRegion}
69             # NOTE: bind IP is found in Heat replacing the network name with the local node IP
70             # for the given network; replacement examples (eg. for internal_api):
71             # internal_api -> IP
72             # internal_api_uri -> [IP]
73             # internal_api_subnet - > IP/CIDR
74             sahara::host: {get_param: [ServiceNetMap, SaharaApiNetwork]}
75             tripleo.sahara_api.firewall_rules:
76               '132 sahara':
77                 dport:
78                   - 8386
79                   - 13386
80       step_config: |
81         include ::tripleo::profile::base::sahara::api