QA:Testcase create OpenStack nova network
From FedoraProject
(Difference between revisions)
(made more copy & pasteable) |
|||
| 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 | + | $> name=$USER |
| − | $> sudo nova-manage project create | + | $> sudo nova-manage user admin $name |
| − | $> sudo nova-manage network create | + | $> sudo nova-manage project create $name $name |
| − | + | $> sudo nova-manage network create $name 10.0.0.0/24 1 256 --bridge=br0 | |
| + | |||
|results= | |results= | ||
* The commands complete without errors | * The commands complete without errors | ||
Revision as of 12:23, 18 October 2011
Contents |
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:
$> name=$USER $> sudo nova-manage user admin $name $> sudo nova-manage project create $name $name $> sudo nova-manage network create $name 10.0.0.0/24 1 256 --bridge=br0
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