Update Readme.md with usage and install info

Update readme.md with usage and install info

Change-Id: Ia7b527429e498fe61b80dd57046efa014afc1844
This commit is contained in:
Tatyana Leontovich 2015-11-25 15:09:54 +02:00
parent 210cd9bf37
commit 133aea743e
1 changed files with 107 additions and 2 deletions

109
README.md
View File

@ -10,6 +10,111 @@ PXE, creating, snapshotting and resuming back the whole environment in single
action, create virtual machines with multiple NICs, multiple hard drives and many
other customizations with a few lines of code in system tests.
Documentation
Installation
-------------
All documentation can be found here: https://docs.fuel-infra.org/fuel-dev/devops.html
The installation procedure can be implemented via PyPI in Python virtual environment (suppose you are using Ubuntu 12.04 or Ubuntu 14.04):
Before using it, please install the following required dependencies:
sudo apt-get install git \
postgresql \
postgresql-server-dev-all \
libyaml-dev \
libffi-dev \
python-dev \
python-libvirt \
python-pip \
qemu-kvm \
qemu-utils \
libvirt-bin \
libvirt-dev \
ubuntu-vm-builder \
bridge-utils
sudo apt-get update && sudo apt-get upgrade -y
Install packages needed for building python eggs
sudo apt-get install python-virtualenv libpq-dev libgmp-dev
In case you are using Ubuntu 12.04 lets update pip and virtualenv, otherwise you can skip this step
sudo pip install pip virtualenv --upgrade
hash -r
Create virtualenv for the devops project
virtualenv --system-site-packages <path>/fuel-devops-venv
Note
Activate virtualenv and install devops package using PyPI.
source <path>/fuel-devops-venv/bin/activate
pip install git+https://github.com/openstack/fuel-devops.git@<version> --upgrade
Configuration
=============
Basically fuel-devops requires that the following system-wide settings are configured:
* Default libvirt storage pool is active (called default)
* Current user must have permission to run KVM VMs with libvirt
* PostgreSQL server running with appropriate grants and schema for devops
* [Optional] Nested Paging is enabled
* [Optional] Network filter for host bridges should be disabled: [http://wiki.libvirt.org/page/Net.bridge-nf-call_and_sysctl.conf](http://wiki.libvirt.org/page/Net.bridge-nf-call_and_sysctl.conf).
Usage
=====
Run dos.py -h to see full list of supported actions
Operation commands:
list Show virtual environments
show Show VMs in environment
erase Delete environment
start Start VMs
destroy Destroy(stop) VMs
suspend Suspend VMs
resume Resume VMs
revert Apply snapshot to environment
snapshot Make environment snapshot
sync Synchronization environment and devops
snapshot-list Show snapshots in environment
snapshot-delete Delete snapshot from environment
net-list Show networks in environment
time-sync Sync time on all env nodes
revert-resume Revert, resume, sync time on VMs
version Show devops version
create Create a new environment
slave-add Add a node
slave-change Change node VCPU and memory config
slave-remove Remove node from environment
admin-setup Setup admin node
admin-change Change admin node VCPU and memory config
node-start Start node in environment
node-destroy Destroy (power off) node in environment
node-reset Reset (restart) node in environment
Use dos.py <command> -h to see help for specific command
positional arguments:
ENV_NAME environment name
optional arguments:
-h, --help show this help message and exit
--vcpu VCPU_COUNT Set node VCPU count
--node-count NODE_COUNT, -C NODE_COUNT
How many nodes will be created
--ram RAM_SIZE Set node RAM size
--net-pool NET_POOL, -P NET_POOL
Set ip network pool (cidr)
--iso-path ISO_PATH, -I ISO_PATH
Set Fuel ISO path
...
Testing
==========
There are next test targets that can be run to validate the code.
tox -e pep8 - style guidelines enforcement
tox -e py27 - unit and integration testing