From Fedora Project Wiki
(If you set --bridge_interface it will add a route from that through the bridge thus breaking your connectivity.) |
No edit summary |
||
Line 4: | Line 4: | ||
|actions= | |actions= | ||
To create the user, project and network do: | To create the user, project and network do: | ||
$> sudo nova-manage user admin | $> sudo nova-manage user admin admin | ||
$> sudo nova-manage project create | $> sudo nova-manage project create testproject $name | ||
$> sudo nova-manage network create | $> sudo nova-manage network create testnet 10.0.0.0/24 1 256 --bridge=testnetbr0 | ||
NB: if your local network uses the 10.0.0.0/24 range, pick another non-conflicting range for testing. | |||
|results= | |results= |
Revision as of 08:47, 7 March 2012
Description
Test creating an initial admin user, project and network.
Setup
Follow QA:Testcase_start_OpenStack_Nova_services.
How to test
To create the user, project and network do:
$> sudo nova-manage user admin admin $> sudo nova-manage project create testproject $name $> sudo nova-manage network create testnet 10.0.0.0/24 1 256 --bridge=testnetbr0
NB: if your local network uses the 10.0.0.0/24 range, pick another non-conflicting range for testing.
Expected Results
- The commands complete without errors
- No new errors in the logs:
$> grep -i error /var/log/nova/*.log
- The user, project and network have been created:
$> sudo nova-manage user list $> sudo nova-manage project list $> sudo nova-manage network list