Merge "Enable Docker service for Compute role"
[apex-tripleo-heat-templates.git] / puppet / services / sahara-api.yaml
1 heat_template_version: ocata
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             # NOTE: bind IP is found in Heat replacing the network name with the local node IP
65             # for the given network; replacement examples (eg. for internal_api):
66             # internal_api -> IP
67             # internal_api_uri -> [IP]
68             # internal_api_subnet - > IP/CIDR
69             sahara::host: {get_param: [ServiceNetMap, SaharaApiNetwork]}
70             tripleo.sahara_api.firewall_rules:
71               '132 sahara':
72                 dport:
73                   - 8386
74                   - 13386
75       step_config: |
76         include ::tripleo::profile::base::sahara::api
77       service_config_settings:
78         keystone:
79           sahara::keystone::auth::tenant: 'service'
80           sahara::keystone::auth::public_url: {get_param: [EndpointMap, SaharaPublic, uri]}
81           sahara::keystone::auth::internal_url: {get_param: [EndpointMap, SaharaInternal, uri]}
82           sahara::keystone::auth::admin_url: {get_param: [EndpointMap, SaharaAdmin, uri]}
83           sahara::keystone::auth::password: {get_param: SaharaPassword }
84           sahara::keystone::auth::region: {get_param: KeystoneRegion}
85         mysql:
86           sahara::db::mysql::password: {get_param: SaharaPassword}
87           sahara::db::mysql::user: sahara
88           sahara::db::mysql::host: {get_param: [EndpointMap, MysqlInternal, host_nobrackets]}
89           sahara::db::mysql::dbname: sahara
90           sahara::db::mysql::allowed_hosts:
91             - '%'
92             - "%{hiera('mysql_bind_host')}"
93       upgrade_tasks:
94         - name: Stop sahara_api service
95           tags: step1
96           service: name=openstack-sahara-api state=stopped