init.pp 29 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780
  1. # == Class: nova
  2. #
  3. # This class is used to specify configuration parameters that are common
  4. # across all nova services.
  5. #
  6. # === Parameters:
  7. #
  8. # [*ensure_package*]
  9. # (optional) The state of nova packages
  10. # Defaults to 'present'
  11. #
  12. # [*database_connection*]
  13. # (optional) Connection url for the nova database.
  14. # Defaults to undef.
  15. #
  16. # [*slave_connection*]
  17. # (optional) Connection url to connect to nova slave database (read-only).
  18. # Defaults to undef.
  19. #
  20. # [*api_database_connection*]
  21. # (optional) Connection url for the nova API database.
  22. # Defaults to undef.
  23. #
  24. # [*api_slave_connection*]
  25. # (optional) Connection url to connect to nova API slave database (read-only).
  26. # Defaults to undef.
  27. #
  28. # [*placement_database_connection*]
  29. # (optional) Connection url for the nova placement database.
  30. # Defaults to undef.
  31. #
  32. # [*placement_slave_connection*]
  33. # (optional) Connection url to connect to nova placement slave database (read-only).
  34. # Defaults to undef.
  35. #
  36. # [*database_max_retries*]
  37. # (optional) Maximum database connection retries during startup.
  38. # Defaults to undef.
  39. #
  40. # [*database_idle_timeout*]
  41. # (optional) Timeout before idle database connections are reaped.
  42. # Defaults to undef.
  43. #
  44. # [*database_retry_interval*]
  45. # (optional) Interval between retries of opening a database connection.
  46. # Defaults to undef.
  47. #
  48. # [*database_min_pool_size*]
  49. # (optional) Minimum number of SQL connections to keep open in a pool.
  50. # Defaults to undef.
  51. #
  52. # [*database_max_pool_size*]
  53. # (optional) Maximum number of SQL connections to keep open in a pool.
  54. # Defaults to undef.
  55. #
  56. # [*database_max_overflow*]
  57. # (optional) If set, use this value for max_overflow with sqlalchemy.
  58. # Defaults to: undef.
  59. #
  60. # [*default_transport_url*]
  61. # (optional) A URL representing the messaging driver to use and its full
  62. # configuration. Transport URLs take the form:
  63. # transport://user:pass@host1:port[,hostN:portN]/virtual_host
  64. # Defaults to $::os_service_default
  65. #
  66. # [*rpc_response_timeout*]
  67. # (Optional) Seconds to wait for a response from a call. (integer value)
  68. # Defaults to $::os_service_default.
  69. #
  70. # [*rpc_backend*]
  71. # (optional) The rpc backend implementation to use, can be:
  72. # rabbit (for rabbitmq)
  73. # zmq (for zeromq)
  74. # Defaults to $::os_service_default
  75. #
  76. # [*image_service*]
  77. # (optional) Service used to search for and retrieve images.
  78. # Defaults to 'nova.image.glance.GlanceImageService'
  79. #
  80. # [*glance_api_servers*]
  81. # (optional) List of addresses for api servers.
  82. # Defaults to 'http://localhost:9292'
  83. #
  84. # [*rabbit_use_ssl*]
  85. # (optional) Boolean. Connect over SSL for RabbitMQ. (boolean value)
  86. # Defaults to $::os_service_default
  87. #
  88. # [*rabbit_ha_queues*]
  89. # (optional) Use HA queues in RabbitMQ. (boolean value)
  90. # Defaults to $::os_service_default
  91. #
  92. # [*rabbit_heartbeat_timeout_threshold*]
  93. # (optional) Number of seconds after which the RabbitMQ broker is considered
  94. # down if the heartbeat keepalive fails. Any value >0 enables heartbeats.
  95. # Heartbeating helps to ensure the TCP connection to RabbitMQ isn't silently
  96. # closed, resulting in missed or lost messages from the queue.
  97. # Requires kombu >= 3.0.7 and amqp >= 1.4.0. (integer value)
  98. # Defaults to $::os_service_default
  99. #
  100. # [*rabbit_heartbeat_rate*]
  101. # (optional) How often during the rabbit_heartbeat_timeout_threshold period
  102. # to check the heartbeat on RabbitMQ connection.
  103. # i.e. rabbit_heartbeat_rate=2 when rabbit_heartbeat_timeout_threshold=60,
  104. # the heartbeat will be checked every 30 seconds. (integer value)
  105. # Defaults to $::os_service_default
  106. #
  107. # [*kombu_ssl_ca_certs*]
  108. # (optional) SSL certification authority file (valid only if SSL enabled).
  109. # (string value)
  110. # Defaults to $::os_service_default
  111. #
  112. # [*kombu_ssl_certfile*]
  113. # (optional) SSL cert file (valid only if SSL enabled). (string value)
  114. # Defaults to $::os_service_default
  115. #
  116. # [*kombu_ssl_keyfile*]
  117. # (optional) SSL key file (valid only if SSL enabled). (string value)
  118. # Defaults to $::os_service_default
  119. #
  120. # [*kombu_ssl_version*]
  121. # (optional) SSL version to use (valid only if SSL enabled).
  122. # Valid values are TLSv1, SSLv23 and SSLv3. SSLv2 may be
  123. # available on some distributions. (string value)
  124. # Defaults to $::os_service_default
  125. #
  126. # [*kombu_reconnect_delay*]
  127. # (optional) How long to wait before reconnecting in response to an AMQP
  128. # consumer cancel notification. (floating point value)
  129. # Defaults to $::os_service_default
  130. #
  131. # [*kombu_compression*]
  132. # (optional) Possible values are: gzip, bz2. If not set compression will not
  133. # be used. This option may notbe available in future versions. EXPERIMENTAL.
  134. # (string value)
  135. # Defaults to $::os_service_default
  136. #
  137. # [*amqp_durable_queues*]
  138. # (optional) Define queues as "durable" to rabbitmq. (boolean value)
  139. # Defaults to $::os_service_default
  140. #
  141. # [*amqp_server_request_prefix*]
  142. # (Optional) Address prefix used when sending to a specific server
  143. # Defaults to $::os_service_default.
  144. #
  145. # [*amqp_broadcast_prefix*]
  146. # (Optional) address prefix used when broadcasting to all servers
  147. # Defaults to $::os_service_default.
  148. #
  149. # [*amqp_group_request_prefix*]
  150. # (Optional) address prefix when sending to any server in group
  151. # Defaults to $::os_service_default.
  152. #
  153. # [*amqp_container_name*]
  154. # (Optional) Name for the AMQP container
  155. # Defaults to $::os_service_default.
  156. #
  157. # [*amqp_idle_timeout*]
  158. # (Optional) Timeout for inactive connections
  159. # Defaults to $::os_service_default.
  160. #
  161. # [*amqp_trace*]
  162. # (Optional) Debug: dump AMQP frames to stdout
  163. # Defaults to $::os_service_default.
  164. #
  165. # [*amqp_ssl_ca_file*]
  166. # (Optional) CA certificate PEM file to verify server certificate
  167. # Defaults to $::os_service_default.
  168. #
  169. # [*amqp_ssl_cert_file*]
  170. # (Optional) Identifying certificate PEM file to present to clients
  171. # Defaults to $::os_service_default.
  172. #
  173. # [*amqp_ssl_key_file*]
  174. # (Optional) Private key PEM file used to sign cert_file certificate
  175. # Defaults to $::os_service_default.
  176. #
  177. # [*amqp_ssl_key_password*]
  178. # (Optional) Password for decrypting ssl_key_file (if encrypted)
  179. # Defaults to $::os_service_default.
  180. #
  181. # [*amqp_allow_insecure_clients*]
  182. # (Optional) Accept clients using either SSL or plain TCP
  183. # Defaults to $::os_service_default.
  184. #
  185. # [*amqp_sasl_mechanisms*]
  186. # (Optional) Space separated list of acceptable SASL mechanisms
  187. # Defaults to $::os_service_default.
  188. #
  189. # [*amqp_sasl_config_dir*]
  190. # (Optional) Path to directory that contains the SASL configuration
  191. # Defaults to $::os_service_default.
  192. #
  193. # [*amqp_sasl_config_name*]
  194. # (Optional) Name of configuration file (without .conf suffix)
  195. # Defaults to $::os_service_default.
  196. #
  197. # [*amqp_username*]
  198. # (Optional) User name for message broker authentication
  199. # Defaults to $::os_service_default.
  200. #
  201. # [*amqp_password*]
  202. # (Optional) Password for message broker authentication
  203. # Defaults to $::os_service_default.
  204. #
  205. # [*host*]
  206. # (Optional) Name of this node. This is typically a hostname, FQDN, or
  207. # IP address.
  208. # Defaults to $::os_service_default.
  209. #
  210. # [*auth_strategy*]
  211. # (optional) The strategy to use for auth: noauth or keystone.
  212. # Defaults to 'keystone'
  213. #
  214. # [*service_down_time*]
  215. # (optional) Maximum time since last check-in for up service.
  216. # Defaults to 60
  217. #
  218. # [*log_dir*]
  219. # (optional) Directory where logs should be stored.
  220. # If set to $::os_service_default, it will not log to any directory.
  221. # Defaults to undef
  222. #
  223. # [*state_path*]
  224. # (optional) Directory for storing state.
  225. # Defaults to '/var/lib/nova'
  226. #
  227. # [*lock_path*]
  228. # (optional) Directory for lock files.
  229. # On RHEL will be '/var/lib/nova/tmp' and on Debian '/var/lock/nova'
  230. # Defaults to $::nova::params::lock_path
  231. #
  232. # [*debug*]
  233. # (optional) Set log output to debug output.
  234. # Defaults to undef
  235. #
  236. # [*periodic_interval*]
  237. # (optional) Seconds between running periodic tasks.
  238. # Defaults to '60'
  239. #
  240. # [*report_interval*]
  241. # (optional) Interval at which nodes report to data store.
  242. # Defaults to '10'
  243. #
  244. # [*rootwrap_config*]
  245. # (optional) Path to the rootwrap configuration file to use for running commands as root
  246. # Defaults to '/etc/nova/rootwrap.conf'
  247. #
  248. # [*use_syslog*]
  249. # (optional) Use syslog for logging
  250. # Defaults to undef
  251. #
  252. # [*use_stderr*]
  253. # (optional) Use stderr for logging
  254. # Defaults to undef
  255. #
  256. # [*log_facility*]
  257. # (optional) Syslog facility to receive log lines.
  258. # Defaults to undef
  259. #
  260. # [*use_ssl*]
  261. # (optional) Enable SSL on the API server
  262. # Defaults to false, not set
  263. #
  264. # [*enabled_ssl_apis*]
  265. # (optional) List of APIs to SSL enable
  266. # Defaults to []
  267. # Possible values : 'osapi_compute', 'metadata'
  268. #
  269. # [*cert_file*]
  270. # (optinal) Certificate file to use when starting API server securely
  271. # Defaults to false, not set
  272. #
  273. # [*key_file*]
  274. # (optional) Private key file to use when starting API server securely
  275. # Defaults to false, not set
  276. #
  277. # [*ca_file*]
  278. # (optional) CA certificate file to use to verify connecting clients
  279. # Defaults to false, not set_
  280. #
  281. # [*nova_public_key*]
  282. # (optional) Install public key in .ssh/authorized_keys for the 'nova' user.
  283. # Expects a hash of the form { type => 'key-type', key => 'key-data' } where
  284. # 'key-type' is one of (ssh-rsa, ssh-dsa, ssh-ecdsa) and 'key-data' is the
  285. # actual key data (e.g, 'AAAA...').
  286. #
  287. # [*nova_private_key*]
  288. # (optional) Install private key into .ssh/id_rsa (or appropriate equivalent
  289. # for key type). Expects a hash of the form { type => 'key-type', key =>
  290. # 'key-data' }, where 'key-type' is one of (ssh-rsa, ssh-dsa, ssh-ecdsa) and
  291. # 'key-data' is the contents of the private key file.
  292. #
  293. # [*notification_transport_url*]
  294. # (optional) A URL representing the messaging driver to use for notifications
  295. # and its full configuration. Transport URLs take the form:
  296. # transport://user:pass@host1:port[,hostN:portN]/virtual_host
  297. # Defaults to $::os_service_default
  298. #
  299. # [*notification_driver*]
  300. # (optional) Driver or drivers to handle sending notifications.
  301. # Value can be a string or a list.
  302. # Defaults to $::os_service_default.
  303. #
  304. # [*notification_topics*]
  305. # (optional) AMQP topic used for OpenStack notifications
  306. # Defaults to ::os_service_default
  307. #
  308. # [*notify_api_faults*]
  309. # (optional) If set, send api.fault notifications on caught
  310. # exceptions in the API service
  311. # Defaults to false
  312. #
  313. # [*notify_on_state_change*]
  314. # (optional) If set, send compute.instance.update notifications
  315. # on instance state changes. Valid values are None for no notifications,
  316. # "vm_state" for notifications on VM state changes, or "vm_and_task_state"
  317. # for notifications on VM and task state changes.
  318. # Defaults to undef
  319. #
  320. # [*os_region_name*]
  321. # (optional) Sets the os_region_name flag. For environments with
  322. # more than one endpoint per service, this is required to make
  323. # things such as cinder volume attach work. If you don't set this
  324. # and you have multiple endpoints, you will get AmbiguousEndpoint
  325. # exceptions in the nova API service.
  326. # Defaults to $::os_service_default
  327. #
  328. # [*cinder_catalog_info*]
  329. # (optional) Info to match when looking for cinder in the service
  330. # catalog. Format is: separated values of the form:
  331. # <service_type>:<service_name>:<endpoint_type>
  332. # Defaults to 'volumev2:cinderv2:publicURL'
  333. #
  334. # [*upgrade_level_cells*]
  335. # (optional) Sets a version cap for messages sent to local cells services
  336. # Defaults to $::os_service_default
  337. #
  338. # [*upgrade_level_cert*]
  339. # (optional) Sets a version cap for messages sent to cert services
  340. # Defaults to $::os_service_default
  341. #
  342. # [*upgrade_level_compute*]
  343. # (optional) Sets a version cap for messages sent to compute services
  344. # Defaults to $::os_service_default
  345. #
  346. # [*upgrade_level_conductor*]
  347. # (optional) Sets a version cap for messages sent to conductor services
  348. # Defaults to $::os_service_default
  349. #
  350. # [*upgrade_level_console*]
  351. # (optional) Sets a version cap for messages sent to console services
  352. # Defaults to $::os_service_default
  353. #
  354. # [*upgrade_level_consoleauth*]
  355. # (optional) Sets a version cap for messages sent to consoleauth services
  356. # Defaults to $::os_service_default
  357. #
  358. # [*upgrade_level_intercell*]
  359. # (optional) Sets a version cap for messages sent between cells services
  360. # Defaults to $::os_service_default
  361. #
  362. # [*upgrade_level_network*]
  363. # (optional) Sets a version cap for messages sent to network services
  364. # Defaults to $::os_service_default
  365. #
  366. # [*upgrade_level_scheduler*]
  367. # (optional) Sets a version cap for messages sent to scheduler services
  368. # Defaults to $::os_service_default
  369. #
  370. # [*use_ipv6*]
  371. # (optional) Use IPv6 or not.
  372. # Defaults to $::os_service_default
  373. #
  374. # [*purge_config*]
  375. # (optional) Whether to set only the specified config options
  376. # in the nova config.
  377. # Defaults to false.
  378. #
  379. # [*block_device_allocate_retries*]
  380. # (optional) Number of times to retry block device allocation on failures
  381. # Defaults to $::os_service_default
  382. #
  383. # [*block_device_allocate_retries_interval*]
  384. # (optional) Waiting time interval (seconds) between block device allocation
  385. # retries on failures
  386. # Defaults to $::os_service_default
  387. #
  388. # [*cpu_allocation_ratio*]
  389. # (optional) Virtual CPU to physical CPU allocation ratio which affects all
  390. # CPU filters. This can be set on the scheduler, or can be overridden
  391. # per compute node.
  392. # Defaults to $::os_service_default
  393. #
  394. # [*ram_allocation_ratio*]
  395. # (optional) Virtual ram to physical ram allocation ratio which affects all
  396. # ram filters. This can be set on the scheduler, or can be overridden
  397. # per compute node.
  398. # Defaults to $::os_service_default
  399. #
  400. # [*disk_allocation_ratio*]
  401. # (optional) Virtual disk to physical disk allocation ratio which is used
  402. # by the disk filter. This can be set on the scheduler, or can be overridden
  403. # per compute node.
  404. # Defaults to $::os_service_default
  405. #
  406. # DEPRECATED PARAMETERS
  407. #
  408. # [*rabbit_host*]
  409. # (optional) Location of rabbitmq installation. (string value)
  410. # Defaults to $::os_service_default
  411. #
  412. # [*rabbit_hosts*]
  413. # (optional) List of clustered rabbit servers. (string value)
  414. # Defaults to $::os_service_default
  415. #
  416. # [*rabbit_port*]
  417. # (optional) Port for rabbitmq instance. (port value)
  418. # Defaults to $::os_service_default
  419. #
  420. # [*rabbit_password*]
  421. # (optional) Password used to connect to rabbitmq. (string value)
  422. # Defaults to $::os_service_default
  423. #
  424. # [*rabbit_userid*]
  425. # (optional) User used to connect to rabbitmq. (string value)
  426. # Defaults to $::os_service_default
  427. #
  428. # [*rabbit_virtual_host*]
  429. # (optional) The RabbitMQ virtual host. (string value)
  430. # Defaults to $::os_service_default
  431. #
  432. class nova(
  433. $ensure_package = 'present',
  434. $database_connection = undef,
  435. $slave_connection = undef,
  436. $api_database_connection = undef,
  437. $api_slave_connection = undef,
  438. $placement_database_connection = undef,
  439. $placement_slave_connection = undef,
  440. $block_device_allocate_retries = $::os_service_default,
  441. $block_device_allocate_retries_interval = $::os_service_default,
  442. $database_idle_timeout = undef,
  443. $database_min_pool_size = undef,
  444. $database_max_pool_size = undef,
  445. $database_max_retries = undef,
  446. $database_retry_interval = undef,
  447. $database_max_overflow = undef,
  448. $default_transport_url = $::os_service_default,
  449. $rpc_response_timeout = $::os_service_default,
  450. $rpc_backend = $::os_service_default,
  451. $image_service = 'nova.image.glance.GlanceImageService',
  452. # these glance params should be optional
  453. # this should probably just be configured as a glance client
  454. $glance_api_servers = 'http://localhost:9292',
  455. $rabbit_use_ssl = $::os_service_default,
  456. $rabbit_heartbeat_timeout_threshold = $::os_service_default,
  457. $rabbit_heartbeat_rate = $::os_service_default,
  458. $rabbit_ha_queues = $::os_service_default,
  459. $kombu_ssl_ca_certs = $::os_service_default,
  460. $kombu_ssl_certfile = $::os_service_default,
  461. $kombu_ssl_keyfile = $::os_service_default,
  462. $kombu_ssl_version = $::os_service_default,
  463. $kombu_reconnect_delay = $::os_service_default,
  464. $kombu_compression = $::os_service_default,
  465. $amqp_durable_queues = $::os_service_default,
  466. $amqp_server_request_prefix = $::os_service_default,
  467. $amqp_broadcast_prefix = $::os_service_default,
  468. $amqp_group_request_prefix = $::os_service_default,
  469. $amqp_container_name = $::os_service_default,
  470. $amqp_idle_timeout = $::os_service_default,
  471. $amqp_trace = $::os_service_default,
  472. $amqp_ssl_ca_file = $::os_service_default,
  473. $amqp_ssl_cert_file = $::os_service_default,
  474. $amqp_ssl_key_file = $::os_service_default,
  475. $amqp_ssl_key_password = $::os_service_default,
  476. $amqp_allow_insecure_clients = $::os_service_default,
  477. $amqp_sasl_mechanisms = $::os_service_default,
  478. $amqp_sasl_config_dir = $::os_service_default,
  479. $amqp_sasl_config_name = $::os_service_default,
  480. $amqp_username = $::os_service_default,
  481. $amqp_password = $::os_service_default,
  482. $host = $::os_service_default,
  483. $auth_strategy = 'keystone',
  484. $service_down_time = 60,
  485. $log_dir = undef,
  486. $state_path = '/var/lib/nova',
  487. $lock_path = $::nova::params::lock_path,
  488. $debug = undef,
  489. $periodic_interval = '60',
  490. $report_interval = '10',
  491. $rootwrap_config = '/etc/nova/rootwrap.conf',
  492. $use_ssl = false,
  493. $enabled_ssl_apis = ['metadata', 'osapi_compute'],
  494. $ca_file = false,
  495. $cert_file = false,
  496. $key_file = false,
  497. $nova_public_key = undef,
  498. $nova_private_key = undef,
  499. $use_syslog = undef,
  500. $use_stderr = undef,
  501. $log_facility = undef,
  502. $notification_transport_url = $::os_service_default,
  503. $notification_driver = $::os_service_default,
  504. $notification_topics = $::os_service_default,
  505. $notify_api_faults = false,
  506. $notify_on_state_change = undef,
  507. $os_region_name = $::os_service_default,
  508. $cinder_catalog_info = 'volumev2:cinderv2:publicURL',
  509. $upgrade_level_cells = $::os_service_default,
  510. $upgrade_level_cert = $::os_service_default,
  511. $upgrade_level_compute = $::os_service_default,
  512. $upgrade_level_conductor = $::os_service_default,
  513. $upgrade_level_console = $::os_service_default,
  514. $upgrade_level_consoleauth = $::os_service_default,
  515. $upgrade_level_intercell = $::os_service_default,
  516. $upgrade_level_network = $::os_service_default,
  517. $upgrade_level_scheduler = $::os_service_default,
  518. $use_ipv6 = $::os_service_default,
  519. $cpu_allocation_ratio = $::os_service_default,
  520. $ram_allocation_ratio = $::os_service_default,
  521. $disk_allocation_ratio = $::os_service_default,
  522. $purge_config = false,
  523. # DEPRECATED PARAMETERS
  524. $rabbit_host = $::os_service_default,
  525. $rabbit_hosts = $::os_service_default,
  526. $rabbit_password = $::os_service_default,
  527. $rabbit_port = $::os_service_default,
  528. $rabbit_userid = $::os_service_default,
  529. $rabbit_virtual_host = $::os_service_default,
  530. ) inherits nova::params {
  531. include ::nova::deps
  532. # maintain backward compatibility
  533. include ::nova::db
  534. include ::nova::logging
  535. validate_array($enabled_ssl_apis)
  536. if empty($enabled_ssl_apis) and $use_ssl {
  537. warning('enabled_ssl_apis is empty but use_ssl is set to true')
  538. }
  539. if !is_service_default($rabbit_host) or
  540. !is_service_default($rabbit_hosts) or
  541. !is_service_default($rabbit_password) or
  542. !is_service_default($rabbit_port) or
  543. !is_service_default($rabbit_userid) or
  544. !is_service_default($rabbit_virtual_host) {
  545. warning("nova::rabbit_host, nova::rabbit_hosts, nova::rabbit_password, \
  546. nova::rabbit_port, nova::rabbit_userid and nova::rabbit_virtual_host are \
  547. deprecated. Please use nova::default_transport_url instead.")
  548. }
  549. if $use_ssl {
  550. if !$cert_file {
  551. fail('The cert_file parameter is required when use_ssl is set to true')
  552. }
  553. if !$key_file {
  554. fail('The key_file parameter is required when use_ssl is set to true')
  555. }
  556. }
  557. if $nova_public_key or $nova_private_key {
  558. file { '/var/lib/nova/.ssh':
  559. ensure => directory,
  560. mode => '0700',
  561. owner => 'nova',
  562. group => 'nova',
  563. require => Anchor['nova::config::begin'],
  564. before => Anchor['nova::config::end'],
  565. }
  566. if $nova_public_key {
  567. if ! $nova_public_key['key'] or ! $nova_public_key['type'] {
  568. fail('You must provide both a key type and key data.')
  569. }
  570. ssh_authorized_key { 'nova-migration-public-key':
  571. ensure => present,
  572. key => $nova_public_key['key'],
  573. type => $nova_public_key['type'],
  574. user => 'nova',
  575. require => File['/var/lib/nova/.ssh'],
  576. }
  577. }
  578. if $nova_private_key {
  579. if ! $nova_private_key[key] or ! $nova_private_key['type'] {
  580. fail('You must provide both a key type and key data.')
  581. }
  582. $nova_private_key_file = $nova_private_key['type'] ? {
  583. 'ssh-rsa' => '/var/lib/nova/.ssh/id_rsa',
  584. 'ssh-dsa' => '/var/lib/nova/.ssh/id_dsa',
  585. 'ssh-ecdsa' => '/var/lib/nova/.ssh/id_ecdsa',
  586. default => undef
  587. }
  588. if ! $nova_private_key_file {
  589. fail("Unable to determine name of private key file. Type specified was '${nova_private_key['type']}' \
  590. but should be one of: ssh-rsa, ssh-dsa, ssh-ecdsa.")
  591. }
  592. file { $nova_private_key_file:
  593. content => $nova_private_key[key],
  594. mode => '0600',
  595. owner => 'nova',
  596. group => 'nova',
  597. require => File['/var/lib/nova/.ssh'],
  598. }
  599. }
  600. }
  601. package { 'python-nova':
  602. ensure => $ensure_package,
  603. tag => ['openstack', 'nova-package'],
  604. }
  605. package { 'nova-common':
  606. ensure => $ensure_package,
  607. name => $::nova::params::common_package_name,
  608. require => Package['python-nova'],
  609. tag => ['openstack', 'nova-package'],
  610. }
  611. # used by debian/ubuntu in nova::network_bridge to refresh
  612. # interfaces based on /etc/network/interfaces
  613. exec { 'networking-refresh':
  614. command => '/sbin/ifdown -a ; /sbin/ifup -a',
  615. refreshonly => true,
  616. }
  617. resources { 'nova_config':
  618. purge => $purge_config,
  619. }
  620. if $image_service == 'nova.image.glance.GlanceImageService' {
  621. if $glance_api_servers {
  622. nova_config { 'glance/api_servers': value => $glance_api_servers }
  623. }
  624. }
  625. # maintain backwards compatibility
  626. $real_cpu_allocation_ratio = pick($::nova::scheduler::filter::cpu_allocation_ratio, $cpu_allocation_ratio)
  627. ensure_resource('nova_config', 'DEFAULT/cpu_allocation_ratio', { value => $real_cpu_allocation_ratio })
  628. $real_ram_allocation_ratio = pick($::nova::scheduler::filter::ram_allocation_ratio, $ram_allocation_ratio)
  629. ensure_resource('nova_config', 'DEFAULT/ram_allocation_ratio', { value => $real_ram_allocation_ratio })
  630. $real_disk_allocation_ratio = pick($::nova::scheduler::filter::disk_allocation_ratio, $disk_allocation_ratio)
  631. ensure_resource('nova_config', 'DEFAULT/disk_allocation_ratio', { value => $real_disk_allocation_ratio })
  632. nova_config {
  633. 'api/auth_strategy': value => $auth_strategy;
  634. 'DEFAULT/image_service': value => $image_service;
  635. 'DEFAULT/host': value => $host;
  636. }
  637. # we keep "nova.openstack.common.rpc.impl_kombu" for backward compatibility
  638. # but since Icehouse, "rabbit" is enough.
  639. if $rpc_backend in [$::os_service_default, 'nova.openstack.common.rpc.impl_kombu', 'rabbit'] {
  640. oslo::messaging::rabbit {'nova_config':
  641. rabbit_password => $rabbit_password,
  642. rabbit_userid => $rabbit_userid,
  643. rabbit_virtual_host => $rabbit_virtual_host,
  644. rabbit_use_ssl => $rabbit_use_ssl,
  645. heartbeat_timeout_threshold => $rabbit_heartbeat_timeout_threshold,
  646. heartbeat_rate => $rabbit_heartbeat_rate,
  647. kombu_reconnect_delay => $kombu_reconnect_delay,
  648. amqp_durable_queues => $amqp_durable_queues,
  649. kombu_compression => $kombu_compression,
  650. kombu_ssl_ca_certs => $kombu_ssl_ca_certs,
  651. kombu_ssl_certfile => $kombu_ssl_certfile,
  652. kombu_ssl_keyfile => $kombu_ssl_keyfile,
  653. kombu_ssl_version => $kombu_ssl_version,
  654. rabbit_hosts => $rabbit_hosts,
  655. rabbit_host => $rabbit_host,
  656. rabbit_port => $rabbit_port,
  657. rabbit_ha_queues => $rabbit_ha_queues,
  658. }
  659. } elsif $rpc_backend == 'amqp' {
  660. oslo::messaging::amqp { 'nova_config':
  661. server_request_prefix => $amqp_server_request_prefix,
  662. broadcast_prefix => $amqp_broadcast_prefix,
  663. group_request_prefix => $amqp_group_request_prefix,
  664. container_name => $amqp_container_name,
  665. idle_timeout => $amqp_idle_timeout,
  666. trace => $amqp_trace,
  667. ssl_ca_file => $amqp_ssl_ca_file,
  668. ssl_cert_file => $amqp_ssl_cert_file,
  669. ssl_key_file => $amqp_ssl_key_file,
  670. ssl_key_password => $amqp_ssl_key_password,
  671. allow_insecure_clients => $amqp_allow_insecure_clients,
  672. sasl_mechanisms => $amqp_sasl_mechanisms,
  673. sasl_config_dir => $amqp_sasl_config_dir,
  674. sasl_config_name => $amqp_sasl_config_name,
  675. username => $amqp_username,
  676. password => $amqp_password,
  677. }
  678. } else {
  679. nova_config { 'DEFAULT/rpc_backend': value => $rpc_backend }
  680. }
  681. # SSL Options
  682. if $use_ssl {
  683. nova_config {
  684. 'DEFAULT/enabled_ssl_apis' : value => join($enabled_ssl_apis, ',');
  685. 'ssl/cert_file' : value => $cert_file;
  686. 'ssl/key_file' : value => $key_file;
  687. 'wsgi/ssl_cert_file' : value => $cert_file;
  688. 'wsgi/ssl_key_file' : value => $key_file;
  689. }
  690. if $ca_file {
  691. nova_config { 'ssl/ca_file' :
  692. value => $ca_file,
  693. }
  694. nova_config { 'wsgi/ssl_ca_file' :
  695. value => $ca_file,
  696. }
  697. } else {
  698. nova_config { 'ssl/ca_file' :
  699. ensure => absent,
  700. }
  701. }
  702. } else {
  703. nova_config {
  704. 'DEFAULT/enabled_ssl_apis' : ensure => absent;
  705. 'ssl/cert_file' : ensure => absent;
  706. 'ssl/key_file' : ensure => absent;
  707. 'ssl/ca_file' : ensure => absent;
  708. }
  709. }
  710. oslo::messaging::default { 'nova_config':
  711. transport_url => $default_transport_url,
  712. rpc_response_timeout => $rpc_response_timeout,
  713. }
  714. oslo::messaging::notifications { 'nova_config':
  715. transport_url => $notification_transport_url,
  716. driver => $notification_driver,
  717. topics => $notification_topics,
  718. }
  719. nova_config {
  720. 'cinder/catalog_info': value => $cinder_catalog_info;
  721. 'os_vif_linux_bridge/use_ipv6': value => $use_ipv6;
  722. 'DEFAULT/notify_api_faults': value => $notify_api_faults;
  723. # Following may need to be broken out to different nova services
  724. 'DEFAULT/state_path': value => $state_path;
  725. 'DEFAULT/service_down_time': value => $service_down_time;
  726. 'DEFAULT/rootwrap_config': value => $rootwrap_config;
  727. 'DEFAULT/report_interval': value => $report_interval;
  728. 'DEFAULT/block_device_allocate_retries': value => $block_device_allocate_retries;
  729. 'DEFAULT/block_device_allocate_retries_interval': value => $block_device_allocate_retries_interval;
  730. }
  731. oslo::concurrency { 'nova_config': lock_path => $lock_path }
  732. if $notify_on_state_change and $notify_on_state_change in ['vm_state', 'vm_and_task_state'] {
  733. nova_config {
  734. 'DEFAULT/notify_on_state_change': value => $notify_on_state_change;
  735. }
  736. } else {
  737. nova_config { 'DEFAULT/notify_on_state_change': ensure => absent; }
  738. }
  739. nova_config {
  740. 'cinder/os_region_name': value => $os_region_name;
  741. 'upgrade_levels/cells': value => $upgrade_level_cells;
  742. 'upgrade_levels/cert': value => $upgrade_level_cert;
  743. 'upgrade_levels/compute': value => $upgrade_level_compute;
  744. 'upgrade_levels/conductor': value => $upgrade_level_conductor;
  745. 'upgrade_levels/console': value => $upgrade_level_console;
  746. 'upgrade_levels/consoleauth': value => $upgrade_level_consoleauth;
  747. 'upgrade_levels/intercell': value => $upgrade_level_intercell;
  748. 'upgrade_levels/network': value => $upgrade_level_network;
  749. 'upgrade_levels/scheduler': value => $upgrade_level_scheduler;
  750. }
  751. }