This is the testing framework for OpenStack and Chef. We leverage this to test against our changes to our cookbooks to make sure that you can still build a cluster from the ground up with any changes we push up.
This framework also gives us an opportunity to show different Reference Architectures and a sane example on how to start with OpenStack and Chef.
With the master
branch of the cookbooks, which is currently tied to the base OpenStack Kilo release, this supports deploying to Ubuntu 14 and CentOS 7 for all-in-one with nova-network. Support for all-in-one with Neutron, and multi-node support, is a work in progress.
Support for CentOS 6.5 and Ubuntu 12 with Icehouse is available with the stable/icehouse branch of this project.
- ChefDK 0.3.6 or later
- Vagrant 1.7.2 or later with VirtualBox or some other provider
$ git clone https://github.com/stackforge/openstack-chef-repo.git
$ cd openstack-chef-repo
$ vi vagrant_linux.rb # change the 'vm.box' to the variant you'd like to use.
$ chef exec rake berks_vendor
The StackForge OpenStack cookbooks by default use databags for configuring passwords. There are four
data_bags : user_passwords, db_passwords, service_passwords, secrets. I have a already created
the data_bags/
directory, so you shouldn't need to make them, if you do something's broken.
See Databag section below for more details.
NOTE: If you are running Ubuntu 14.04 LTS and as your base compute machine, you should note that the shipped
kernel 3.13.0-24-generic
has networking issues, and the best way to resolve this is
via: apt-get install linux-image-generic-lts-utopic
. This will install at least 3.16.0
from the Utopic hardware enablement.
- All-in-One
- nova-network
- Neutron
- Multi-Node
- nova-network
- Neutron
For each environment, there's a corresponding readme file in the doc directory. Please review that for specific details and additional setup that might be required before deploying the cloud.
These commands will spin up various OpenStack cluster configurations, the simplest being the all-in-one controller with nova-network.
$ chef exec rake aio_nova # All-in-one controller with nova-network
$ chef exec rake aio_neutron # All-in-one controller with Neutron
$ chef exec rake multi_nova # Multi-node controller with nova-network and 3 compute nodes
$ chef exec rake multi_neutron # Multi-node controller with Neutron and 3 compute nodes
$ cd vms
$ vagrant ssh controller
$ sudo su -
# Access the controller as noted above
$ source openrc
$ nova service-list && nova hypervisor-list
$ glance image-list
$ keystone user-list
$ nova list
To allow SSH access to instances, a nova security group is defined as follows:
$ nova secgroup-list
$ nova secgroup-list-rules default
$ nova secgroup-create allow_ssh "allow ssh to instance"
$ nova secgroup-add-rule allow_ssh tcp 22 22 0.0.0.0/0
$ nova secgroup-list-rules allow_ssh
To allow SSH keys to be injected into instance, a nova keypair is defined as follows:
# Just press Enter to all the questions
$ ssh-keygen
$ nova keypair-add --pub-key=/root/.ssh/id_rsa.pub mykey
$ nova boot test --image cirros --flavor 1 --security-groups=allow_ssh --key-name=mykey
Wait a few seconds and the run nova list
if Status is not Active, wait a few seconds and repeat.
Once status is active you should be able to log in via ssh to the listed IP.
$ ssh cirros@<ip address from nova list output>
If you would like to use the OpenStack dashboard you should go to https://localhost:9443 and the username and password is admin/mypass
.
If you ssh into the controller
machine you can test via the most recent tempest release.
$ cd vms
$ vagrant ssh controller
$ sudo su -
root@controller:~ cd /opt/tempest
root@controller:/opt/tempest$ ./run_tests.sh -V
[-- snip --]
tempest.tests.test_wrappers.TestWrappers
test_pretty_tox 1.68
test_pretty_tox_fails 1.03
test_pretty_tox_serial 0.61
test_pretty_tox_serial_fails 0.55
Ran 233 tests in 13.869s
OK
Running flake8 ...
root@controller:/opt/tempest#
To remove all the nodes and start over again with a different environment or different environment attribute overrides, using the following rake command.
$ chef exec rake destroy_machines
To refresh all the cookbooks, use the following rake commands.
$ chef exec rake destroy_cookbooks
$ chef exec rake berks_vendor
To cleanup everything, use the following rake command.
$ chef exec rake clean
Some basic information about the use of databags within this repo.
# Show the list of databags
$ chef exec knife data bag list -z
db_passwords
secrets
service_passwords
user_passwords
# Show the list of databag items
$ chef exec knife data bag show db_passwords -z
ceilometer
cinder
dash
glance
heat
horizon
ironic
keystone
neutron
nova
# Show contents of databag item
$ chef exec knife data bag show db_passwords ceilometer -z
Encrypted data bag detected, decrypting with provided secret.
ceilometer: mypass
id: ceilometer
# Update contents of databag item
# set EDITOR env var to your editor, for powershell, I used nano
$ chef exec knife data bag edit secrets dispersion_auth_user -z
db_passwords are set to "mypass" secrets are set to "_token" service_passwords are set to "mypass" user_passwords are set to "mypass"
The default secret is stored here .chef\encrypted_data_bag_secret and referenced by .chef\knife.rb.
The ChefDK provides all the required level of gems this testing suite needs. But there exists a Gemfile-Provisioning file that can be used as well. You will need to replace the Gemfile with the Gemfile-Provisioning before running your gem bundling. Note: please ignore the Gemfile, as it is needed only to pass the existing gates with older levels of gems.
When using this on a Windows platform, here are some tweaks to make this work:
- In order to get SSH to work, you will need an SSL client installed. You can use the one that comes with Git for Windows. You will need to append
C:\Program Files (x86)\Git\bin;
to the system PATH.
- Better instructions for multi-node network setup
- Better support for aio_neutron and muilt node tests
- Support for floating ip's
- Split out the
multi-neutron-network-node
cluster also so the network node is it's own machine - Support for swift multi node test
- Easier debugging. Maybe a script to pull the logs from the controller.
Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.