diff --git a/docs/quick-start.md b/docs/quick-start.md index 942763d27..aee45dec3 100644 --- a/docs/quick-start.md +++ b/docs/quick-start.md @@ -1,7 +1,7 @@ # Quick start guide ## Install Tobiko - +sudo yum install python-virtualenv virtualenv path/to/yuor/venv source path/to/yuor/venv/bin/activate pip install tobiko @@ -39,3 +39,36 @@ You can do it in one of two ways: To run neutron tests, use the following command: tox -e neutron + + +## Quick Start Setup&Run Template: +```bash +sudo yum install python-virtualenv.noarch -y +virtualenv ~/tobiko_venv && source ~/tobiko_venv/bin/activate +wget https://bootstrap.pypa.io/get-pip.py +python get-pip.py +pip install tox +sudo yum install gcc python-devel -y +git clone https://opendev.org/x/tobiko.git +cd tobiko +pip install -r extra-requirements.txt; pip install . + +. ~/overcloudrc +wget http://download.cirros-cloud.net/0.3.5/cirros-0.3.5-x86_64-disk.img +openstack image create "cirros" \ + --file cirros-0.3.5-x86_64-disk.img \ + --disk-format qcow2 --container-format bare \ + --public +openstack flavor create --id 0 --vcpus 1 --ram 64 --disk 1 m1.tiny + +cat > tobiko.conf <