No edit summary |
|||
Line 29: | Line 29: | ||
{{admon/note|Hardware Requirements|You can do basic testing of OpenStack in a virtual machine, with specific config noted below}} | {{admon/note|Hardware Requirements|You can do basic testing of OpenStack in a virtual machine, with specific config noted below}} | ||
== How to test? == | |||
Follow the steps below to prepare the machine, then follow each of the test cases in order. | |||
=== '''Configure sudo''' === | |||
Add <span style="color:red;">your account</span> to sudoers, which can be done from a root prompt like: | |||
(umask 337; name=<span style="color:red;">markmc</span>; echo "$name ALL = (ALL) NOPASSWD: ALL" > /etc/sudoers.d/testday) | |||
=== '''Update your machine''' === | |||
Make sure you have all the current updates for it installed: | |||
sudo yum --enablerepo=updates-testing clean all | |||
sudo yum update -y | |||
=== '''Optionally Load nbd''' === | |||
If you don't perform this optional step, | |||
then libguestfs will be used to inject files into qcow2 images. | |||
Note however that is slower, especially if testing openstack within a VM | |||
sudo modprobe nbd | |||
echo nbd | sudo tee -a /etc/modules-load.d/nbd.conf | |||
== Install and setup all Openstack services on a single node == | |||
wget http://repos.fedorapeople.org/repos/openstack/openstack-folsom/fedora-openstack-folsom.repo | |||
yum install openstack-utils | |||
openstack-demo-install | |||
[[Category:Test Days]] | [[Category:Test Days]] | ||
[[Category:OpenStack]] | [[Category:OpenStack]] |
Revision as of 00:48, 12 September 2012
OpenStack Test Days | |
---|---|
Date | 2012-09-18 |
Time | all day |
IRC | #fedora-openstack (webirc) |
Who's available
The following cast of characters will be available testing, workarounds, bug fixes, and general discussion ...
- Development - Pbrady (pixelbeat)
- Development - Derekh (derekh)
- Development - Apevec (apevec)
- Deployment - Vaneldik (vaneldik)
- Deployment - gkotton (garyk)
- Deployment - sten (sten)
- Deployment - rbuilta (rbuilta)
- Development - sdake (sdake)
- Development - jpeeler (jpeeler)
- Consulting - kensey (kensey)
Prerequisite for Test Day
- A fully updated Fedora 17 (virtual) machine.
- Hardware virtualization support (e.g. Intel VT or AMD-V).
- Up to 10-20Gb free disk space. Guest images take up a lot of space.
How to test?
Follow the steps below to prepare the machine, then follow each of the test cases in order.
Configure sudo
Add your account to sudoers, which can be done from a root prompt like:
(umask 337; name=markmc; echo "$name ALL = (ALL) NOPASSWD: ALL" > /etc/sudoers.d/testday)
Update your machine
Make sure you have all the current updates for it installed:
sudo yum --enablerepo=updates-testing clean all sudo yum update -y
Optionally Load nbd
If you don't perform this optional step, then libguestfs will be used to inject files into qcow2 images. Note however that is slower, especially if testing openstack within a VM
sudo modprobe nbd echo nbd | sudo tee -a /etc/modules-load.d/nbd.conf
Install and setup all Openstack services on a single node
wget http://repos.fedorapeople.org/repos/openstack/openstack-folsom/fedora-openstack-folsom.repo yum install openstack-utils openstack-demo-install