Merge "Add a release note for using deployed-servers (aka split-stack)"
[apex-tripleo-heat-templates.git] / puppet / services / nova-api.yaml
1 heat_template_version: ocata
2
3 description: >
4   OpenStack Nova 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   NovaWorkers:
22     default: 0
23     description: Number of workers for Nova API service.
24     type: number
25   NovaPassword:
26     description: The password for the nova service and db account, used by nova-api.
27     type: string
28     hidden: true
29   KeystoneRegion:
30     type: string
31     default: 'regionOne'
32     description: Keystone region for endpoint
33   NeutronMetadataProxySharedSecret:
34     description: Shared secret to prevent spoofing
35     type: string
36     hidden: true
37   InstanceNameTemplate:
38     default: 'instance-%08x'
39     description: Template string to be used to generate instance names
40     type: string
41   NovaEnableDBPurge:
42     default: true
43     description: |
44         Whether to create cron job for purging soft deleted rows in Nova database.
45     type: boolean
46   MonitoringSubscriptionNovaApi:
47     default: 'overcloud-nova-api'
48     type: string
49   NovaApiLoggingSource:
50     type: json
51     default:
52       tag: openstack.nova.api
53       path: /var/log/nova/nova-api.log
54   EnableInternalTLS:
55     type: boolean
56     default: false
57   NovaDefaultFloatingPool:
58     default: 'public'
59     description: Default pool for floating IP addresses
60     type: string
61
62 conditions:
63   nova_workers_zero: {equals : [{get_param: NovaWorkers}, 0]}
64
65 resources:
66   ApacheServiceBase:
67     type: ./apache.yaml
68     properties:
69       ServiceNetMap: {get_param: ServiceNetMap}
70       DefaultPasswords: {get_param: DefaultPasswords}
71       EndpointMap: {get_param: EndpointMap}
72       EnableInternalTLS: {get_param: EnableInternalTLS}
73
74   NovaBase:
75     type: ./nova-base.yaml
76     properties:
77       ServiceNetMap: {get_param: ServiceNetMap}
78       DefaultPasswords: {get_param: DefaultPasswords}
79       EndpointMap: {get_param: EndpointMap}
80
81 outputs:
82   role_data:
83     description: Role data for the Nova API service.
84     value:
85       service_name: nova_api
86       monitoring_subscription: {get_param: MonitoringSubscriptionNovaApi}
87       logging_source: {get_param: NovaApiLoggingSource}
88       logging_groups:
89         - nova
90       config_settings:
91         map_merge:
92         - get_attr: [NovaBase, role_data, config_settings]
93         - get_attr: [ApacheServiceBase, role_data, config_settings]
94         - nova::cron::archive_deleted_rows::hour: '*/12'
95           nova::cron::archive_deleted_rows::destination: '/dev/null'
96           tripleo.nova_api.firewall_rules:
97             '113 nova_api':
98               dport:
99                 - 8773
100                 - 3773
101                 - 8774
102                 - 13774
103                 - 8775
104           nova::keystone::authtoken::project_name: 'service'
105           nova::keystone::authtoken::password: {get_param: NovaPassword}
106           nova::keystone::authtoken::auth_uri: {get_param: [EndpointMap, KeystoneInternal, uri] }
107           nova::keystone::authtoken::auth_url: {get_param: [EndpointMap, KeystoneAdmin, uri_no_suffix]}
108           nova::api::enabled: true
109           nova::api::default_floating_pool: {get_param: NovaDefaultFloatingPool}
110           nova::api::sync_db_api: true
111           nova::api::enable_proxy_headers_parsing: true
112           nova::api::api_bind_address:
113             str_replace:
114               template:
115                 "%{hiera('fqdn_$NETWORK')}"
116               params:
117                 $NETWORK: {get_param: [ServiceNetMap, NovaApiNetwork]}
118           nova::api::service_name: 'httpd'
119           nova::wsgi::apache_api::ssl: {get_param: EnableInternalTLS}
120           # NOTE: bind IP is found in Heat replacing the network name with the local node IP
121           # for the given network; replacement examples (eg. for internal_api):
122           # internal_api -> IP
123           # internal_api_uri -> [IP]
124           # internal_api_subnet - > IP/CIDR
125           nova::wsgi::apache_api::bind_host: {get_param: [ServiceNetMap, NovaApiNetwork]}
126           nova::wsgi::apache_api::servername:
127             str_replace:
128               template:
129                 "%{hiera('fqdn_$NETWORK')}"
130               params:
131                 $NETWORK: {get_param: [ServiceNetMap, NovaApiNetwork]}
132           nova::api::neutron_metadata_proxy_shared_secret: {get_param: NeutronMetadataProxySharedSecret}
133           nova::api::instance_name_template: {get_param: InstanceNameTemplate}
134           nova_enable_db_purge: {get_param: NovaEnableDBPurge}
135         -
136           if:
137           - nova_workers_zero
138           - {}
139           - nova::api::osapi_compute_workers: {get_param: NovaWorkers}
140             nova::wsgi::apache_api::workers: {get_param: NovaWorkers}
141       step_config: |
142         include tripleo::profile::base::nova::api
143       service_config_settings:
144         mysql:
145           map_merge:
146           - {get_attr: [NovaBase, role_data, service_config_settings, mysql]}
147           - nova::db::mysql::password: {get_param: NovaPassword}
148             nova::db::mysql::user: nova
149             nova::db::mysql::host: {get_param: [EndpointMap, MysqlInternal, host_nobrackets]}
150             nova::db::mysql::dbname: nova
151             nova::db::mysql::allowed_hosts:
152               - '%'
153               - "%{hiera('mysql_bind_host')}"
154             nova::db::mysql_api::password: {get_param: NovaPassword}
155             nova::db::mysql_api::user: nova_api
156             nova::db::mysql_api::host: {get_param: [EndpointMap, MysqlInternal, host_nobrackets]}
157             nova::db::mysql_api::dbname: nova_api
158             nova::db::mysql_api::allowed_hosts:
159               - '%'
160               - "%{hiera('mysql_bind_host')}"
161         keystone:
162           nova::keystone::auth::tenant: 'service'
163           nova::keystone::auth::public_url: {get_param: [EndpointMap, NovaPublic, uri]}
164           nova::keystone::auth::internal_url: {get_param: [EndpointMap, NovaInternal, uri]}
165           nova::keystone::auth::admin_url: {get_param: [EndpointMap, NovaAdmin, uri]}
166           nova::keystone::auth::password: {get_param: NovaPassword}
167           nova::keystone::auth::region: {get_param: KeystoneRegion}
168       metadata_settings:
169         get_attr: [ApacheServiceBase, role_data, metadata_settings]