compute.pp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338
  1. # == Class: nova::compute
  2. #
  3. # Installs the nova-compute service
  4. #
  5. # === Parameters:
  6. #
  7. # [*enabled*]
  8. # (optional) Whether to enable the nova-compute service
  9. # Defaults to true
  10. #
  11. # [*heal_instance_info_cache_interval*]
  12. # (optional) Controls how often the instance info should be updated.
  13. # Defaults to '60' , to disable you can set the value to zero.
  14. #
  15. # [*manage_service*]
  16. # (optional) Whether to start/stop the service
  17. # Defaults to true
  18. #
  19. # [*ensure_package*]
  20. # (optional) The state for the nova-compute package
  21. # Defaults to 'present'
  22. #
  23. # [*vnc_enabled*]
  24. # (optional) Whether to use a VNC proxy
  25. # Defaults to true
  26. #
  27. # [*vncserver_proxyclient_address*]
  28. # (optional) The IP address of the server running the VNC proxy client
  29. # Defaults to '127.0.0.1'
  30. #
  31. # [*vncproxy_host*]
  32. # (optional) The host of the VNC proxy server
  33. # Defaults to false
  34. #
  35. # [*vncproxy_protocol*]
  36. # (optional) The protocol to communicate with the VNC proxy server
  37. # Defaults to 'http'
  38. #
  39. # [*vncproxy_port*]
  40. # (optional) The port to communicate with the VNC proxy server
  41. # Defaults to '6080'
  42. #
  43. # [*vncproxy_path*]
  44. # (optional) The path at the end of the uri for communication with the VNC proxy server
  45. # Defaults to '/vnc_auto.html'
  46. #
  47. # [*vnc_keymap*]
  48. # (optional) The keymap to use with VNC (ls -alh /usr/share/qemu/keymaps to list available keymaps)
  49. # Defaults to 'en-us'
  50. #
  51. # [*force_config_drive*]
  52. # (optional) Whether to force the config drive to be attached to all VMs
  53. # Defaults to false
  54. #
  55. # [*virtio_nic*]
  56. # (optional) Whether to use virtio for the nic driver of VMs
  57. # Defaults to false
  58. #
  59. # [*neutron_enabled*]
  60. # (optional) Whether to use Neutron for networking of VMs
  61. # Defaults to true
  62. #
  63. # [*install_bridge_utils*]
  64. # (optional) Whether to install the bridge-utils package or not.
  65. # Applicable only for cases when Neutron was disabled
  66. # Defaults to true
  67. #
  68. # [*instance_usage_audit*]
  69. # (optional) Generate periodic compute.instance.exists notifications.
  70. # Defaults to false
  71. #
  72. # [*instance_usage_audit_period*]
  73. # (optional) Time period to generate instance usages for.
  74. # Time period must be hour, day, month or year
  75. # Defaults to 'month'
  76. #
  77. # [*force_raw_images*]
  78. # (optional) Force backing images to raw format.
  79. # Defaults to true
  80. #
  81. # [*reserved_host_memory*]
  82. # Reserved host memory
  83. # The amount of memory in MB reserved for the host.
  84. # Defaults to '512'
  85. #
  86. # [*pci_passthrough*]
  87. # (optional) Pci passthrough list of hash.
  88. # Defaults to $::os_service_default
  89. # Example of format:
  90. # "[ { 'vendor_id':'1234','product_id':'5678' },
  91. # { 'vendor_id':'4321','product_id':'8765','physical_network':'default' } ] "
  92. #
  93. # [*config_drive_format*]
  94. # (optional) Config drive format. One of iso9660 (default) or vfat
  95. # Defaults to undef
  96. #
  97. # [*allow_resize_to_same_host*]
  98. # (optional) Allow destination machine to match source for resize.
  99. # Useful when testing in single-host environments. Note that this
  100. # can also be set in the api.pp class.
  101. # Defaults to false
  102. #
  103. # [*resize_confirm_window*]
  104. # (optional) Automatically confirm resizes after N seconds.
  105. # Resize functionality will save the existing server before resizing.
  106. # After the resize completes, user is requested to confirm the resize.
  107. # The user has the opportunity to either confirm or revert all
  108. # changes. Confirm resize removes the original server and changes
  109. # server status from resized to active. Setting this option to a time
  110. # period (in seconds) will automatically confirm the resize if the
  111. # server is in resized state longer than that time.
  112. # Defaults to $::os_service_default
  113. #
  114. # [*vcpu_pin_set*]
  115. # (optional) A list or range of physical CPU cores to reserve
  116. # for virtual machine processes
  117. # Defaults to $::os_service_default
  118. #
  119. # [*resume_guests_state_on_host_boot*]
  120. # (optional) This option specifies whether to start guests that were running before the
  121. # host rebooted. It ensures that all of the instances on a Nova compute node
  122. # resume their state each time the compute node boots or restarts.
  123. # Defaults to $::os_service_default
  124. #
  125. # [*keymgr_api_class*]
  126. # (optional) Key Manager service.
  127. # Example of valid value: castellan.key_manager.barbican_key_manager.BarbicanKeyManager
  128. # Defaults to $::os_service_default
  129. #
  130. # [*barbican_auth_endpoint*]
  131. # (optional) Keystone v3 API URL.
  132. # Example: http://localhost:5000/v3
  133. # Defaults to $::os_service_default
  134. #
  135. # [*barbican_endpoint*]
  136. # (optional) Barbican URL.
  137. # Defaults to $::os_service_default
  138. #
  139. # [*barbican_api_version*]
  140. # (optional) Barbican API version.
  141. # Defaults to $::os_service_default
  142. #
  143. # [*max_concurrent_live_migrations*]
  144. # (optional) Maximum number of live migrations to run in parallel.
  145. # Defaults to $::os_service_default
  146. #
  147. # DEPRECATED PARAMETERS
  148. #
  149. # [*default_availability_zone*]
  150. # (optional) Default compute node availability zone.
  151. # Defaults to undef
  152. #
  153. # [*default_schedule_zone*]
  154. # (optional) Availability zone to use when user doesn't specify one.
  155. # Defaults to undef
  156. #
  157. # [*internal_service_availability_zone*]
  158. # (optional) The availability zone to show internal services under.
  159. # Defaults to undef
  160. #
  161. # [*compute_manager*]
  162. # Deprecated. Compute manager
  163. # The driver that will manage the running instances.
  164. # Defaults to $::os_service_default
  165. #
  166. class nova::compute (
  167. $enabled = true,
  168. $manage_service = true,
  169. $ensure_package = 'present',
  170. $vnc_enabled = true,
  171. $vncserver_proxyclient_address = '127.0.0.1',
  172. $vncproxy_host = false,
  173. $vncproxy_protocol = 'http',
  174. $vncproxy_port = '6080',
  175. $vncproxy_path = '/vnc_auto.html',
  176. $vnc_keymap = 'en-us',
  177. $force_config_drive = false,
  178. $virtio_nic = false,
  179. $neutron_enabled = true,
  180. $install_bridge_utils = true,
  181. $instance_usage_audit = false,
  182. $instance_usage_audit_period = 'month',
  183. $force_raw_images = true,
  184. $reserved_host_memory = '512',
  185. $heal_instance_info_cache_interval = '60',
  186. $pci_passthrough = $::os_service_default,
  187. $config_drive_format = $::os_service_default,
  188. $allow_resize_to_same_host = false,
  189. $resize_confirm_window = $::os_service_default,
  190. $vcpu_pin_set = $::os_service_default,
  191. $resume_guests_state_on_host_boot = $::os_service_default,
  192. $keymgr_api_class = $::os_service_default,
  193. $barbican_auth_endpoint = $::os_service_default,
  194. $barbican_endpoint = $::os_service_default,
  195. $barbican_api_version = $::os_service_default,
  196. $max_concurrent_live_migrations = $::os_service_default,
  197. # DEPRECATED PARAMETERS
  198. $default_availability_zone = undef,
  199. $default_schedule_zone = undef,
  200. $internal_service_availability_zone = undef,
  201. $compute_manager = $::os_service_default,
  202. ) {
  203. include ::nova::deps
  204. include ::nova::params
  205. if $default_availability_zone {
  206. warning("The default_availability_zone parameter is deprecated and will be removed in a \
  207. future release. Use default_availability_zone parameter of nova class instead.")
  208. }
  209. if $default_schedule_zone {
  210. warning("The default_schedule_zone parameter is deprecated and will be removed in a \
  211. future release. Use default_schedule_zone parameter of nova class instead.")
  212. }
  213. if $internal_service_availability_zone {
  214. warning("The internal_service_availability_zone parameter is deprecated and will be \
  215. removed in a future release. Use internal_service_availability_zone parameter of nova class instead.")
  216. }
  217. if $compute_manager {
  218. warning("compute_manager is marked as deprecated in Nova but still needed when Ironic \
  219. is used. It will be removed once Nova removes it.")
  220. }
  221. $vcpu_pin_set_real = pick(join(any2array($vcpu_pin_set), ','), $::os_service_default)
  222. # in the case of pci_passthrough, we can't use the same mechanism as vcpu_pin_set because
  223. # the value is computed in a function and it makes things more complex. Let's just check if
  224. # a value is set or if it's empty.
  225. if !is_service_default($pci_passthrough) and !empty($pci_passthrough) {
  226. $pci_passthrough_real = check_array_of_hash($pci_passthrough)
  227. } else {
  228. $pci_passthrough_real = $::os_service_default
  229. }
  230. # cryptsetup is required when Barbican is encrypting volumes
  231. if $keymgr_api_class =~ /barbican/ {
  232. ensure_packages('cryptsetup', {
  233. ensure => present,
  234. tag => 'openstack',
  235. })
  236. }
  237. include ::nova::availability_zone
  238. nova_config {
  239. 'DEFAULT/reserved_host_memory_mb': value => $reserved_host_memory;
  240. 'DEFAULT/compute_manager': value => $compute_manager;
  241. 'DEFAULT/heal_instance_info_cache_interval': value => $heal_instance_info_cache_interval;
  242. 'DEFAULT/pci_passthrough_whitelist': value => $pci_passthrough_real;
  243. 'DEFAULT/resize_confirm_window': value => $resize_confirm_window;
  244. 'DEFAULT/vcpu_pin_set': value => $vcpu_pin_set_real;
  245. 'DEFAULT/resume_guests_state_on_host_boot': value => $resume_guests_state_on_host_boot;
  246. 'key_manager/api_class': value => $keymgr_api_class;
  247. 'barbican/auth_endpoint': value => $barbican_auth_endpoint;
  248. 'barbican/barbican_endpoint': value => $barbican_endpoint;
  249. 'barbican/barbican_api_version': value => $barbican_api_version;
  250. 'DEFAULT/max_concurrent_live_migrations': value => $max_concurrent_live_migrations;
  251. }
  252. ensure_resource('nova_config', 'DEFAULT/allow_resize_to_same_host', { value => $allow_resize_to_same_host })
  253. if ($vnc_enabled) {
  254. include ::nova::vncproxy::common
  255. nova_config {
  256. 'vnc/vncserver_proxyclient_address': value =>
  257. $vncserver_proxyclient_address;
  258. 'vnc/keymap': value => $vnc_keymap;
  259. }
  260. } else {
  261. nova_config {
  262. 'vnc/vncserver_proxyclient_address': ensure => absent;
  263. 'vnc/keymap': ensure => absent;
  264. }
  265. }
  266. nova_config {
  267. 'vnc/enabled': value => $vnc_enabled;
  268. }
  269. if $neutron_enabled != true and $install_bridge_utils {
  270. # Install bridge-utils if we use nova-network
  271. package { 'bridge-utils':
  272. ensure => present,
  273. tag => ['openstack', 'nova-support-package'],
  274. }
  275. }
  276. nova::generic_service { 'compute':
  277. enabled => $enabled,
  278. manage_service => $manage_service,
  279. package_name => $::nova::params::compute_package_name,
  280. service_name => $::nova::params::compute_service_name,
  281. ensure_package => $ensure_package,
  282. before => Exec['networking-refresh']
  283. }
  284. if $force_config_drive {
  285. nova_config { 'DEFAULT/force_config_drive': value => true }
  286. } else {
  287. nova_config { 'DEFAULT/force_config_drive': ensure => absent }
  288. }
  289. if $virtio_nic {
  290. # Enable the virtio network card for instances
  291. nova_config { 'DEFAULT/libvirt_use_virtio_for_bridges': value => true }
  292. }
  293. if $instance_usage_audit and $instance_usage_audit_period in ['hour', 'day', 'month', 'year'] {
  294. nova_config {
  295. 'DEFAULT/instance_usage_audit': value => $instance_usage_audit;
  296. 'DEFAULT/instance_usage_audit_period': value => $instance_usage_audit_period;
  297. }
  298. } else {
  299. nova_config {
  300. 'DEFAULT/instance_usage_audit': ensure => absent;
  301. 'DEFAULT/instance_usage_audit_period': ensure => absent;
  302. }
  303. }
  304. nova_config {
  305. 'DEFAULT/force_raw_images': value => $force_raw_images;
  306. }
  307. if is_service_default($config_drive_format) or $config_drive_format == 'iso9660' {
  308. ensure_packages($::nova::params::genisoimage_package_name, {
  309. tag => ['openstack', 'nova-support-package'],
  310. })
  311. }
  312. nova_config {
  313. 'DEFAULT/config_drive_format': value => $config_drive_format;
  314. }
  315. }