From 266437f8c9a0f3e5b86f0c870f6235d9a52c2fa3 Mon Sep 17 00:00:00 2001 From: Dennis Dmitriev Date: Thu, 11 May 2017 13:37:33 +0300 Subject: [PATCH] [doc] Add libssl-dev package to python eggs build requirements Change-Id: Id7a3ecc6d8638666ffe03623ba9c6f39a4707987 --- doc/source/install.rst | 21 +++++++++++++++++---- 1 file changed, 17 insertions(+), 4 deletions(-) diff --git a/doc/source/install.rst b/doc/source/install.rst index cd59d102..d61fabd6 100644 --- a/doc/source/install.rst +++ b/doc/source/install.rst @@ -60,7 +60,7 @@ Devops installation in `virtualenv `_ repo. Please use the latest tag from 2.9.x tags for Fuel 6.1 or later. +Install fuel-devops with SQLite3 database: + .. code-block:: bash . fuel-devops-venv/bin/activate - pip install git+https://github.com/openstack/fuel-devops.git@2.9.21 --upgrade # For fuel-devops 2.9.x - # pip install git+https://github.com/openstack/fuel-devops.git@3.0.1 --upgrade # For fuel-devops 3.0.x with SQLite3 database - # pip install git+https://github.com/openstack/fuel-devops.git@3.0.1#egg=project[postgre] --upgrade # For fuel-devops 3.0.x with PostgreSQL database + pip install git+https://github.com/openstack/fuel-devops.git --upgrade +[Optional] Install fuel-devops with PostgreSQL database: + +.. code-block:: bash + + . fuel-devops-venv/bin/activate + pip install git+https://github.com/openstack/fuel-devops.git#egg=project[postgre] --upgrade + +[Optional] Install fuel-devops with specified tag: + +.. code-block:: bash + + . fuel-devops-venv/bin/activate + pip install git+https://github.com/openstack/fuel-devops.git@2.9.21 --upgrade # Do not install 2.9.x over 3.x ! setup.py in fuel-devops repository does everything required.