README_ORIGINAL 8.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231
  1. # Packstack
  2. Utility to install **OpenStack** on **Red Hat** based operating system. See
  3. other branches for older **OpenStack** versions. Details on how to
  4. contribute to **Packstack** may be found in the **Packstack** wiki at
  5. <https://wiki.openstack.org/wiki/Packstack> Additional information
  6. about involvement in the community around **Packstack** can be found at
  7. <https://openstack.redhat.com/Get_involved>
  8. This utility can be used to install **OpenStack** on a single or group of
  9. hosts (over `ssh`).
  10. This utility is still in the early stages, a lot of the configuration
  11. options have yet to be added.
  12. ## Installation of packstack:
  13. $ yum install -y git
  14. $ git clone git://github.com/openstack/packstack.git
  15. $ cd packstack && sudo python setup.py install
  16. ## Installation of openstack-puppet-modules (REQUIRED if running packstack from source):
  17. $ export GEM_HOME=/tmp/somedir
  18. $ gem install r10k
  19. $ sudo -E /tmp/somedir/bin/r10k puppetfile install -v
  20. $ sudo cp -r packstack/puppet/modules/packstack /usr/share/openstack-puppet/modules
  21. ### Option 1 (all-in-one)
  22. $ packstack --allinone
  23. This will install all **OpenStack** services on a single host without
  24. prompting for any configuration information. This will generate an
  25. "answers" file (`packstack-answers-<date>-<time>.txt`) containing all
  26. the values used for the install.
  27. If you need to re-run packstack, you must use the `--answer-file`
  28. option in order for packstack to use the correct values for passwords
  29. and other authentication credentials:
  30. $ packstack --answer-file packstack-answers-<date>-<time>.txt
  31. ### Option 2 (using answer file)
  32. $ packstack --gen-answer-file=ans.txt
  33. Then edit `ans.txt` as appropriate e.g.
  34. - set `CONFIG_SSH_KEY` to a public ssh key to be installed to remote machines
  35. - Edit the IP address to anywhere you want to install a piece of OpenStack on another server
  36. - Edit the 3 network interfaces to whatever makes sense in your setup
  37. you'll need to use a icehouse repository for example for RHEL
  38. $ CONFIG_REPO=http://repos.fedorapeople.org/repos/openstack/openstack-icehouse/epel-6/
  39. $ packstack --answer-file=ans.txt
  40. ### Option 3 (prompts for configuration options)
  41. $ packstack
  42. that's it, if everything went well you can now start using OpenStack
  43. $ cd
  44. $ . keystonerc_admin
  45. $ nova list
  46. $ swift list # if you have installed swift
  47. ## Config options
  48. - `CONFIG_NOVA_COMPUTE_HOSTS` :
  49. * A comma separated list of ip addresses on which to install nova compute
  50. - `CONFIG_SWIFT_STORAGE_HOSTS` :
  51. * A comma separated list of swift storage devices
  52. * `1.1.1.1`: create a testing loopback device and use this for storage
  53. * `1.1.1.1/sdb`: use `/dev/sdb` on `1.1.1.1` as a storage device
  54. ## Logging
  55. The location of the log files and generated puppet manifests are in the
  56. `/var/tmp/packstack` directory under a directory named by the date in which
  57. **Packstack** was run and a random string (e.g. `/var/tmp/packstack/20131022-204316-Bf3Ek2`).
  58. Inside, we find a manifest directory and the `openstack-setup.log` file; puppet
  59. manifests and a log file for each one are found inside the manifest directory.
  60. ## Debugging
  61. To make **Packstack** write more detailed information into the log file you can use the `-d` switch:
  62. $ packstack -d --allinone
  63. ## Developing
  64. **Warning:**
  65. this procedure installs **openstack-puppet-modules** containing code that has
  66. not been upstreamed and fully tested yet and as such will not be as robust as
  67. the other install procedures. It is recommended to install from **RPM**
  68. instead.
  69. To ease development of **Packstack** and **openstack-puppet-modules**, it can be
  70. useful to install from *git* such that updates to the git repositories are
  71. immediately effective without reinstallation of packstack and
  72. **openstack-puppet-modules**.
  73. To do this, start with a minimal **Fedora 21** installation. Then remove any
  74. relevant packages that might conflict:
  75. $ yum -y erase openstack-{packstack*,puppet-modules}
  76. Disable **SELinux** by changing "`enforcing`" to "`permissive`" in
  77. `/etc/sysconfig/selinux`, then reboot to allow service changes to take effect
  78. and swap over networking. Then install packages:
  79. $ yum -y install git python-setuptools
  80. And install **RDO**:
  81. $ yum -y install https://rdo.fedorapeople.org/rdo-release.rpm
  82. $ yum -y update
  83. Now we get **openstack-puppet-modules**. Because `python setup.py
  84. install_puppet_modules` from **Packstack** copies rather than linking, this is not
  85. entirely straightforward:
  86. $ git clone https://github.com/redhat-openstack/openstack-puppet-modules
  87. $ cd openstack-puppet-modules
  88. $ git checkout master-patches
  89. $ mkdir /usr/share/openstack-puppet
  90. $ ln -sv /root/openstack-puppet-modules /usr/share/openstack-puppet/modules
  91. Then we get **Packstack**, and perform a similar dance:
  92. $ yum install -y python-crypto python-devel libffi-devel openssl-devel gcc-c++
  93. $ git clone https://github.com/openstack/packstack
  94. $ cd packstack
  95. $ python setup.py develop
  96. $ cd /usr/share/openstack-puppet/modules
  97. $ ln -sv /root/packstack/packstack/puppet/modules/packstack
  98. And we're done. Changes to the contents of **Packstack** and
  99. **openstack-puppet-modules** repositories are picked up by the **Packstack**
  100. executable without further intervention, and **Packstack** is ready to install.
  101. ## Puppet Style Guide
  102. **IMPORTANT** <https://docs.puppetlabs.com/guides/style_guide.html>
  103. Please, respect the Puppet Style Guide as much as possible !
  104. ## Running local Puppet-lint tests
  105. It assumes that both `bundler` as well as `rubygems` (and `ruby`) are already
  106. installed on the system. If not, run this command:
  107. $ sudo yum install rubygems rubygem-bundler ruby ruby-devel -y
  108. Go into the **Packstack** root directory.
  109. $ cd packstack/
  110. A `Rakefile` contains all you need to run puppet-lint task automatically over
  111. all the puppet manifests included in the **Packstack** project.
  112. $ ls -l packstack/puppet/templates/
  113. and
  114. $ ls -l packstack/puppet/modules/
  115. The default puppet-lint pattern for `.pp` files is `**/*.pp`. So there is no
  116. need to go inside those directories to run puppet-lint !
  117. $ mkdir vendor
  118. $ export GEM_HOME=vendor
  119. $ bundle install
  120. $ bundle exec rake lint
  121. ## Packstack integration tests
  122. Packstack is integration tested in the OpenStack gate and provides the means to
  123. reproduce these tests on your environment if you wish.
  124. This is the current matrix of available tests:
  125. | - | scenario001 | scenario002 | scenario003 |
  126. |:----------:|:-----------:|:-----------:|:------------:
  127. | keystone | FERNET | UUID | FERNET |
  128. | glance | file | swift | file |
  129. | nova | X | X | X |
  130. | neutron | X | X | X |
  131. | lbaasv2 | | X | |
  132. | cinder | X | | |
  133. | ceilometer | | | X |
  134. | aodh | | | X |
  135. | gnocchi | | | X |
  136. | panko | | | X |
  137. | heat | | | X |
  138. | swift | | X | |
  139. | sahara | | X | |
  140. | trove | | X | |
  141. | horizon | X | | |
  142. | manila | X | | |
  143. | nagios | X | | |
  144. | SSL | X | | |
  145. To run these tests:
  146. export SCENARIO="scenario001"
  147. ./run_tests.sh
  148. run_tests.sh will take care of installing the required dependencies,
  149. configure packstack to run according to the above matrix and run the complete
  150. installation process. If the installation is successful, tempest will also
  151. run smoke tests.
  152. By default, run_tests.sh will set up delorean (RDO Trunk) repositories.
  153. There are two ways of overriding default repositories:
  154. export DELOREAN="http://someotherdomain.tld/delorean.repo"
  155. export DELOREAN_DEPS="http://someotherdomain.tld/delorean-deps.repo"
  156. ./run_tests.sh
  157. You can also choose to disable repository management entirely:
  158. <setup your own custom repositories here>
  159. export MANAGE_REPOS="false"
  160. ./run_tests.sh