README_ORIGINAL 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138
  1. Team and repository tags
  2. ========================
  3. [![Team and repository tags](http://governance.openstack.org/badges/puppet-nova.svg)](http://governance.openstack.org/reference/tags/index.html)
  4. <!-- Change things from this point on -->
  5. nova
  6. ====
  7. #### Table of Contents
  8. 1. [Overview - What is the nova module?](#overview)
  9. 2. [Module Description - What does the module do?](#module-description)
  10. 3. [Setup - The basics of getting started with nova](#setup)
  11. 4. [Implementation - An under-the-hood peek at what the module is doing](#implementation)
  12. 5. [Limitations - OS compatibility, etc.](#limitations)
  13. 6. [Development - Guide for contributing to the module](#development)
  14. 7. [Contributors - Those with commits](#contributors)
  15. Overview
  16. --------
  17. The nova module is a part of [OpenStack](https://github.com/openstack), an effort by the OpenStack infrastructure team to provide continuous integration testing and code review for OpenStack and OpenStack community projects as part of the core software. The module its self is used to flexibly configure and manage the compute service for OpenStack.
  18. Module Description
  19. ------------------
  20. The nova module is a thorough attempt to make Puppet capable of managing the entirety of nova. This includes manifests to provision such things as keystone endpoints, RPC configurations specific to nova, and database connections. Types are shipped as part of the nova module to assist in manipulation of configuration files.
  21. This module is tested in combination with other modules needed to build and leverage an entire OpenStack software stack.
  22. Setup
  23. -----
  24. **What the nova module affects:**
  25. * [Nova](https://wiki.openstack.org/wiki/Nova), the compute service for OpenStack.
  26. ### Installing nova
  27. puppet module install openstack/nova
  28. ### Beginning with nova
  29. To utilize the nova module's functionality you will need to declare multiple resources. This is not an exhaustive list of all the components needed, we recommend you consult and understand the [core openstack](http://docs.openstack.org) documentation.
  30. ```puppet
  31. class { 'nova':
  32. database_connection => 'mysql://nova:a_big_secret@127.0.0.1/nova?charset=utf8',
  33. rabbit_userid => 'nova',
  34. rabbit_password => 'an_even_bigger_secret',
  35. image_service => 'nova.image.glance.GlanceImageService',
  36. glance_api_servers => 'localhost:9292',
  37. rabbit_host => '127.0.0.1',
  38. }
  39. class { 'nova::compute':
  40. enabled => true,
  41. vnc_enabled => true,
  42. }
  43. class { 'nova::compute::libvirt':
  44. migration_support => true,
  45. }
  46. ```
  47. Implementation
  48. --------------
  49. ### nova
  50. nova is a combination of Puppet manifest and ruby code to delivery configuration and extra functionality through types and providers.
  51. ### Types
  52. #### nova_config
  53. The `nova_config` provider is a children of the ini_setting provider. It allows one to write an entry in the `/etc/nova/nova.conf` file.
  54. ```puppet
  55. nova_config { 'DEFAULT/image_service' :
  56. value => nova.image.glance.GlanceImageService,
  57. }
  58. ```
  59. This will write `image_service=nova.image.glance.GlanceImageService` in the `[DEFAULT]` section.
  60. ##### name
  61. Section/setting name to manage from `nova.conf`
  62. ##### value
  63. The value of the setting to be defined.
  64. ##### secret
  65. Whether to hide the value from Puppet logs. Defaults to `false`.
  66. ##### ensure_absent_val
  67. If value is equal to ensure_absent_val then the resource will behave as if `ensure => absent` was specified. Defaults to `<SERVICE DEFAULT>`
  68. Limitations
  69. -----------
  70. * Supports libvirt, xenserver and vmware compute drivers.
  71. * Tested on EL and Debian derivatives.
  72. Development
  73. -----------
  74. Developer documentation for the entire puppet-openstack project.
  75. * http://docs.openstack.org/developer/puppet-openstack-guide/
  76. Beaker-Rspec
  77. ------------
  78. This module has beaker-rspec tests
  79. To run the tests on the default vagrant node:
  80. ```shell
  81. bundle install
  82. bundle exec rspec spec/acceptance
  83. ```
  84. For more information on writing and running beaker-rspec tests visit the documentation:
  85. * https://github.com/puppetlabs/beaker-rspec/blob/master/README.md
  86. Contributors
  87. ------------
  88. * https://github.com/openstack/puppet-nova/graphs/contributors