api.pp 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507
  1. # == Class: nova::api
  2. #
  3. # Setup and configure the Nova API endpoint
  4. #
  5. # === Parameters
  6. #
  7. # [*enabled*]
  8. # (optional) Whether the nova api service will be run
  9. # Defaults to true
  10. #
  11. # [*api_paste_config*]
  12. # (optional) File name for the paste.deploy config for nova-api
  13. # Defaults to 'api-paste.ini'
  14. #
  15. # [*manage_service*]
  16. # (optional) Whether to start/stop the service
  17. # Defaults to true
  18. #
  19. # [*ensure_package*]
  20. # (optional) Whether the nova api package will be installed
  21. # Defaults to 'present'
  22. #
  23. # [*api_bind_address*]
  24. # (optional) IP address for nova-api server to listen
  25. # Defaults to '0.0.0.0'
  26. #
  27. # [*metadata_listen*]
  28. # (optional) IP address for metadata server to listen
  29. # Defaults to '0.0.0.0'
  30. #
  31. # [*metadata_listen_port*]
  32. # (optional) The port on which the metadata API will listen.
  33. # Defaults to 8775
  34. #
  35. # [*enabled_apis*]
  36. # (optional) A list of apis to enable
  37. # Defaults to ['osapi_compute', 'metadata']
  38. #
  39. # [*use_forwarded_for*]
  40. # (optional) Treat X-Forwarded-For as the canonical remote address. Only
  41. # enable this if you have a sanitizing proxy.
  42. # Defaults to false
  43. #
  44. # [*osapi_compute_workers*]
  45. # (optional) Number of workers for OpenStack API service
  46. # Defaults to $::processorcount
  47. #
  48. # [*osapi_compute_listen_port*]
  49. # (optional) The port on which the OpenStack API will listen.
  50. # Defaults to port 8774
  51. #
  52. # [*metadata_workers*]
  53. # (optional) Number of workers for metadata service
  54. # Defaults to $::processorcount
  55. #
  56. # [*instance_name_template*]
  57. # (optional) Template string to be used to generate instance names
  58. # Defaults to undef
  59. #
  60. # [*sync_db*]
  61. # (optional) Run nova-manage db sync on api nodes after installing the package.
  62. # Defaults to true
  63. #
  64. # [*sync_db_api*]
  65. # (optional) Run nova-manage api_db sync on api nodes after installing the package.
  66. # Defaults to true
  67. #
  68. # [*db_online_data_migrations*]
  69. # (optional) Run nova-manage db online_data_migrations on api nodes after
  70. # installing the package - required on upgrade.
  71. # Defaults to false.
  72. #
  73. # [*neutron_metadata_proxy_shared_secret*]
  74. # (optional) Shared secret to validate proxies Neutron metadata requests
  75. # Defaults to undef
  76. #
  77. # [*pci_alias*]
  78. # (optional) Pci passthrough for controller:
  79. # Defaults to undef
  80. # Example
  81. # "[ {'vendor_id':'1234', 'product_id':'5678', 'name':'default'}, {...} ]"
  82. #
  83. # [*ratelimits*]
  84. # (optional) A string that is a semicolon-separated list of 5-tuples.
  85. # See http://docs.openstack.org/trunk/config-reference/content/configuring-compute-API.html
  86. # Example: '(POST, "*", .*, 10, MINUTE);(POST, "*/servers", ^/servers, 50, DAY);(PUT, "*", .*, 10, MINUTE)'
  87. # Defaults to undef
  88. #
  89. # [*ratelimits_factory*]
  90. # (optional) The rate limiting factory to use
  91. # Defaults to 'nova.api.openstack.compute.limits:RateLimitingMiddleware.factory'
  92. #
  93. # [*enable_proxy_headers_parsing*]
  94. # (optional) This determines if the HTTPProxyToWSGI
  95. # middleware should parse the proxy headers or not.(boolean value)
  96. # Defaults to $::os_service_default
  97. #
  98. # [*default_floating_pool*]
  99. # (optional) Default pool for floating IPs
  100. # Defaults to 'nova'
  101. #
  102. # [*validate*]
  103. # (optional) Whether to validate the service is working after any service refreshes
  104. # Defaults to false
  105. #
  106. # [*fping_path*]
  107. # (optional) Full path to fping.
  108. # Defaults to '/usr/sbin/fping'
  109. #
  110. # [*validation_options*]
  111. # (optional) Service validation options
  112. # Should be a hash of options defined in openstacklib::service_validation
  113. # If empty, defaults values are taken from openstacklib function.
  114. # Default command list nova flavors.
  115. # Require validate set at True.
  116. # Example:
  117. # nova::api::validation_options:
  118. # nova-api:
  119. # command: check_nova.py
  120. # path: /usr/bin:/bin:/usr/sbin:/sbin
  121. # provider: shell
  122. # tries: 5
  123. # try_sleep: 10
  124. # Defaults to {}
  125. #
  126. # [*service_name*]
  127. # (optional) Name of the service that will be providing the
  128. # server functionality of nova-api.
  129. # If the value is 'httpd', this means nova-api will be a web
  130. # service, and you must use another class to configure that
  131. # web service. For example, use class { 'nova::wsgi::apache'...}
  132. # to make nova be a web app using apache mod_wsgi.
  133. # Defaults to '$::nova::params::api_service_name'
  134. #
  135. # [*metadata_cache_expiration*]
  136. # (optional) This option is the time (in seconds) to cache metadata.
  137. # Defaults to $::os_service_default
  138. #
  139. # [*vendordata_jsonfile_path*]
  140. # (optional) Represent the path to the data file.
  141. # Cloud providers may store custom data in vendor data file that will then be
  142. # available to the instances via the metadata service, and to the rendering of
  143. # config-drive. The default class for this, JsonFileVendorData, loads this
  144. # information from a JSON file, whose path is configured by this option
  145. # Defaults to $::os_service_default
  146. #
  147. # [*vendordata_providers*]
  148. # (optional) vendordata providers are how deployers can provide metadata via
  149. # configdrive and metadata that is specific to their deployment. There are
  150. # currently two supported providers: StaticJSON and DynamicJSON.
  151. # Defaults to $::os_service_default
  152. #
  153. # [*vendordata_dynamic_targets*]
  154. # (optional) A list of targets for the dynamic vendordata provider. These
  155. # targets are of the form <name>@<url>.
  156. # Defaults to $::os_service_default
  157. #
  158. # [*vendordata_dynamic_connect_timeout*]
  159. # (optional) Maximum wait time for an external REST service to connect.
  160. # Defaults to $::os_service_default
  161. #
  162. # [*vendordata_dynamic_read_timeout*]
  163. # (optional) Maximum wait time for an external REST service to return data
  164. # once connected.
  165. # Defaults to $::os_service_default
  166. #
  167. # [*max_limit*]
  168. # (optional) This option is limit the maximum number of items in a single response.
  169. # Defaults to $::os_service_default
  170. #
  171. # [*compute_link_prefix*]
  172. # (optional) This string is prepended to the normal URL that is returned in links
  173. # to the OpenStack Compute API.
  174. # Defaults to $::os_service_default
  175. #
  176. # [*glance_link_prefix*]
  177. # (optional) This string is prepended to the normal URL that is returned in links
  178. # to Glance resources.
  179. # Defaults to $::os_service_default
  180. #
  181. # [*hide_server_address_states*]
  182. # (optional) This option is a list of all instance states for which network address
  183. # information should not be returned from the API.
  184. # Defaults to $::os_service_default
  185. #
  186. # [*allow_instance_snapshots*]
  187. # (optional) Operators can turn off the ability for a user to take snapshots of their
  188. # instances by setting this option to False
  189. # Defaults to $::os_service_default
  190. #
  191. # [*enable_network_quota*]
  192. # (optional) This option is used to enable or disable quota checking for tenant networks
  193. # Defaults to $::os_service_default
  194. #
  195. # [*enable_instance_password*]
  196. # (optional) Enables returning of the instance password by the relevant server API calls
  197. # Defaults to $::os_service_default
  198. #
  199. # [*password_length*]
  200. # (optional) Length of generated instance admin passwords (integer value)
  201. # Defaults to $::os_service_default
  202. #
  203. # [*install_cinder_client*]
  204. # (optional) Whether the cinder::client class should be used to install the cinder client.
  205. # Defaults to true
  206. #
  207. # [*allow_resize_to_same_host*]
  208. # (optional) Allow destination machine to match source for resize. Note that this
  209. # is also settable in the compute class. In some sitautions you need it set here
  210. # and in others you need it set there.
  211. # Defaults to false
  212. #
  213. # DEPRECATED
  214. #
  215. # [*conductor_workers*]
  216. # (optional) DEPRECATED. Use workers parameter of nova::conductor
  217. # Class instead.
  218. # Defaults to undef
  219. #
  220. # [*osapi_max_limit*]
  221. # (optional) This option is limit the maximum number of items in a single response.
  222. # Defaults to undef
  223. #
  224. # [*osapi_compute_link_prefix*]
  225. # (optional) This string is prepended to the normal URL that is returned in links
  226. # to the OpenStack Compute API.
  227. # Defaults to undef
  228. #
  229. # [*osapi_glance_link_prefix*]
  230. # (optional) This string is prepended to the normal URL that is returned in links
  231. # to Glance resources.
  232. # Defaults to undef
  233. #
  234. # [*osapi_hide_server_address_states*]
  235. # (optional) This option is a list of all instance states for which network address
  236. # information should not be returned from the API.
  237. # Defaults to undef
  238. #
  239. class nova::api(
  240. $enabled = true,
  241. $manage_service = true,
  242. $api_paste_config = 'api-paste.ini',
  243. $ensure_package = 'present',
  244. $api_bind_address = '0.0.0.0',
  245. $osapi_compute_listen_port = 8774,
  246. $metadata_listen = '0.0.0.0',
  247. $metadata_listen_port = 8775,
  248. $enabled_apis = ['osapi_compute', 'metadata'],
  249. $use_forwarded_for = false,
  250. $osapi_compute_workers = $::processorcount,
  251. $metadata_workers = $::processorcount,
  252. $sync_db = true,
  253. $sync_db_api = true,
  254. $db_online_data_migrations = false,
  255. $neutron_metadata_proxy_shared_secret = undef,
  256. $default_floating_pool = 'nova',
  257. $pci_alias = undef,
  258. $ratelimits = undef,
  259. $ratelimits_factory =
  260. 'nova.api.openstack.compute.limits:RateLimitingMiddleware.factory',
  261. $validate = false,
  262. $validation_options = {},
  263. $instance_name_template = undef,
  264. $fping_path = '/usr/sbin/fping',
  265. $service_name = $::nova::params::api_service_name,
  266. $enable_proxy_headers_parsing = $::os_service_default,
  267. $metadata_cache_expiration = $::os_service_default,
  268. $vendordata_jsonfile_path = $::os_service_default,
  269. $vendordata_providers = $::os_service_default,
  270. $vendordata_dynamic_targets = $::os_service_default,
  271. $vendordata_dynamic_connect_timeout = $::os_service_default,
  272. $vendordata_dynamic_read_timeout = $::os_service_default,
  273. $max_limit = $::os_service_default,
  274. $compute_link_prefix = $::os_service_default,
  275. $glance_link_prefix = $::os_service_default,
  276. $hide_server_address_states = $::os_service_default,
  277. $allow_instance_snapshots = $::os_service_default,
  278. $enable_network_quota = $::os_service_default,
  279. $enable_instance_password = $::os_service_default,
  280. $password_length = $::os_service_default,
  281. $install_cinder_client = true,
  282. $allow_resize_to_same_host = false,
  283. # DEPRECATED PARAMETER
  284. $conductor_workers = undef,
  285. $osapi_max_limit = undef,
  286. $osapi_compute_link_prefix = undef,
  287. $osapi_glance_link_prefix = undef,
  288. $osapi_hide_server_address_states = undef,
  289. ) inherits nova::params {
  290. include ::nova::deps
  291. include ::nova::db
  292. include ::nova::policy
  293. include ::nova::keystone::authtoken
  294. if $install_cinder_client {
  295. include ::cinder::client
  296. Class['cinder::client'] ~> Nova::Generic_service['api']
  297. }
  298. if $conductor_workers {
  299. warning('The conductor_workers parameter is deprecated and has no effect. Use workers parameter of nova::conductor class instead.')
  300. }
  301. if $instance_name_template {
  302. nova_config {
  303. 'DEFAULT/instance_name_template': value => $instance_name_template;
  304. }
  305. } else {
  306. nova_config{
  307. 'DEFAULT/instance_name_template': ensure => absent;
  308. }
  309. }
  310. if $osapi_max_limit {
  311. warning('The osapi_max_limit parameter is deprecated. Please use max_limit instead')
  312. $max_limit_real = $osapi_max_limit
  313. } else {
  314. $max_limit_real = $max_limit
  315. }
  316. if $osapi_compute_link_prefix {
  317. warning('The osapi_compute_link_prefix parameter is deprecated. Please use compute_link_prefix instead')
  318. $compute_link_prefix_real = $osapi_compute_link_prefix
  319. } else {
  320. $compute_link_prefix_real = $compute_link_prefix
  321. }
  322. if $osapi_glance_link_prefix {
  323. warning('The osapi_glance_link_prefix parameter is deprecated. Please use glance_link_prefix instead')
  324. $glance_link_prefix_real = $osapi_glance_link_prefix
  325. } else {
  326. $glance_link_prefix_real = $glance_link_prefix
  327. }
  328. if $osapi_hide_server_address_states {
  329. warning('The osapi_hide_server_address_states parameter is deprecated. Please use hide_server_address_states instead')
  330. $hide_server_address_states_real = $osapi_hide_server_address_states
  331. } else {
  332. $hide_server_address_states_real = $hide_server_address_states
  333. }
  334. if !is_service_default($vendordata_providers) and !empty($vendordata_providers){
  335. validate_array($vendordata_providers)
  336. $vendordata_providers_real = join($vendordata_providers, ',')
  337. } else {
  338. $vendordata_providers_real = $::os_service_default
  339. }
  340. if !is_service_default($vendordata_dynamic_targets) and !empty($vendordata_dynamic_targets){
  341. validate_array($vendordata_dynamic_targets)
  342. $vendordata_dynamic_targets_real = join($vendordata_dynamic_targets, ',')
  343. } else {
  344. $vendordata_dynamic_targets_real = $::os_service_default
  345. }
  346. # metadata can't be run in wsgi so we have to enable it in eventlet anyway.
  347. if ('metadata' in $enabled_apis and $service_name == 'httpd') {
  348. $enable_metadata = true
  349. } else {
  350. $enable_metadata = false
  351. }
  352. # sanitize service_name and prepare DEFAULT/enabled_apis parameter
  353. if $service_name == $::nova::params::api_service_name {
  354. # if running evenlet, we use the original puppet parameter
  355. # so people can enable custom service names and we keep backward compatibility.
  356. $enabled_apis_real = $enabled_apis
  357. $service_enabled = $enabled
  358. } elsif $service_name == 'httpd' {
  359. # when running wsgi, we want to enable metadata in eventlet if part of enabled_apis
  360. if $enable_metadata {
  361. $enabled_apis_real = ['metadata']
  362. $service_enabled = $enabled
  363. } else {
  364. # otherwise, set it to empty list
  365. $enabled_apis_real = []
  366. # if running wsgi for compute, and metadata disabled
  367. # we don't need to enable nova-api service.
  368. $service_enabled = false
  369. }
  370. policy_rcd { 'nova-api':
  371. ensure => present,
  372. set_code => '101',
  373. before => Package['nova-api'],
  374. }
  375. # make sure we start apache before nova-api to avoid binding issues
  376. Service[$service_name] -> Service['nova-api']
  377. } else {
  378. fail("Invalid service_name. Either nova-api/openstack-nova-api for running \
  379. as a standalone service, or httpd for being run by a httpd server")
  380. }
  381. nova::generic_service { 'api':
  382. enabled => $service_enabled,
  383. manage_service => $manage_service,
  384. ensure_package => $ensure_package,
  385. package_name => $::nova::params::api_package_name,
  386. service_name => $::nova::params::api_service_name,
  387. }
  388. nova_config {
  389. 'wsgi/api_paste_config': value => $api_paste_config;
  390. 'DEFAULT/enabled_apis': value => join($enabled_apis_real, ',');
  391. 'DEFAULT/osapi_compute_listen': value => $api_bind_address;
  392. 'DEFAULT/metadata_listen': value => $metadata_listen;
  393. 'DEFAULT/metadata_listen_port': value => $metadata_listen_port;
  394. 'DEFAULT/osapi_compute_listen_port': value => $osapi_compute_listen_port;
  395. 'DEFAULT/osapi_volume_listen': value => $api_bind_address;
  396. 'DEFAULT/osapi_compute_workers': value => $osapi_compute_workers;
  397. 'DEFAULT/metadata_workers': value => $metadata_workers;
  398. 'DEFAULT/default_floating_pool': value => $default_floating_pool;
  399. 'DEFAULT/enable_network_quota': value => $enable_network_quota;
  400. 'DEFAULT/password_length': value => $password_length;
  401. 'api/metadata_cache_expiration': value => $metadata_cache_expiration;
  402. 'api/use_forwarded_for': value => $use_forwarded_for;
  403. 'api/fping_path': value => $fping_path;
  404. 'api/vendordata_jsonfile_path': value => $vendordata_jsonfile_path;
  405. 'api/vendordata_providers': value => $vendordata_providers_real;
  406. 'api/vendordata_dynamic_targets': value => $vendordata_dynamic_targets_real;
  407. 'api/vendordata_dynamic_connect_timeout': value => $vendordata_dynamic_connect_timeout;
  408. 'api/vendordata_dynamic_read_timeout': value => $vendordata_dynamic_read_timeout;
  409. 'api/max_limit': value => $max_limit_real;
  410. 'api/compute_link_prefix': value => $compute_link_prefix_real;
  411. 'api/glance_link_prefix': value => $glance_link_prefix_real;
  412. 'api/hide_server_address_states': value => $hide_server_address_states_real;
  413. 'api/allow_instance_snapshots': value => $allow_instance_snapshots;
  414. 'api/enable_instance_password': value => $enable_instance_password;
  415. }
  416. oslo::middleware {'nova_config':
  417. enable_proxy_headers_parsing => $enable_proxy_headers_parsing,
  418. }
  419. if ($neutron_metadata_proxy_shared_secret){
  420. nova_config {
  421. 'neutron/service_metadata_proxy': value => true;
  422. 'neutron/metadata_proxy_shared_secret':
  423. value => $neutron_metadata_proxy_shared_secret;
  424. }
  425. } else {
  426. nova_config {
  427. 'neutron/service_metadata_proxy': value => false;
  428. 'neutron/metadata_proxy_shared_secret': ensure => absent;
  429. }
  430. }
  431. if ($ratelimits != undef) {
  432. nova_paste_api_ini {
  433. 'filter:ratelimit/paste.filter_factory': value => $ratelimits_factory;
  434. 'filter:ratelimit/limits': value => $ratelimits;
  435. }
  436. }
  437. # Added arg and if statement prevents this from being run
  438. # where db is not active i.e. the compute
  439. if $sync_db {
  440. include ::nova::db::sync
  441. }
  442. if $sync_db_api {
  443. include ::nova::db::sync_api
  444. }
  445. if $db_online_data_migrations {
  446. include ::nova::db::online_data_migrations
  447. }
  448. # Remove auth configuration from api-paste.ini
  449. nova_paste_api_ini {
  450. 'filter:authtoken/auth_uri': ensure => absent;
  451. 'filter:authtoken/auth_host': ensure => absent;
  452. 'filter:authtoken/auth_port': ensure => absent;
  453. 'filter:authtoken/auth_protocol': ensure => absent;
  454. 'filter:authtoken/admin_tenant_name': ensure => absent;
  455. 'filter:authtoken/admin_user': ensure => absent;
  456. 'filter:authtoken/admin_password': ensure => absent;
  457. 'filter:authtoken/auth_admin_prefix': ensure => absent;
  458. }
  459. if $pci_alias {
  460. nova_config {
  461. 'DEFAULT/pci_alias': value => check_array_of_hash($pci_alias);
  462. }
  463. }
  464. if $validate {
  465. #Shrinking the variables names in favor of not
  466. #having more than 140 chars per line
  467. #Admin user real
  468. $aur = $::nova::keystone::authtoken::username
  469. #Admin password real
  470. $apr = $::nova::keystone::authtoken::password
  471. #Admin tenan name real
  472. $atnr = $::nova::keystone::authtoken::project_name
  473. #Keystone Auth URI
  474. $kau = $::nova::keystone::authtoken::auth_uri
  475. $defaults = {
  476. 'nova-api' => {
  477. 'command' => "nova --os-auth-url ${kau} --os-project-name ${atnr} --os-username ${aur} --os-password ${apr} flavor-list",
  478. }
  479. }
  480. $validation_options_hash = merge ($defaults, $validation_options)
  481. create_resources('openstacklib::service_validation', $validation_options_hash, {'subscribe' => 'Service[nova-api]'})
  482. }
  483. ensure_resource('nova_config', 'DEFAULT/allow_resize_to_same_host', { value => $allow_resize_to_same_host })
  484. }