Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
K
Kolla Ansible
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Very Demiurge Very Mindful
Kolla Ansible
Commits
dd02500e
You need to sign in or sign up before continuing.
Commit
dd02500e
authored
8 years ago
by
Jenkins
Committed by
Gerrit Code Review
8 years ago
Browse files
Options
Downloads
Plain Diff
Merge "Simplify install process for faster quickstart execution"
parents
ae17562c
8cd0d2a7
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
doc/quickstart.rst
+50
-4
50 additions, 4 deletions
doc/quickstart.rst
with
50 additions
and
4 deletions
doc/quickstart.rst
+
50
−
4
View file @
dd02500e
...
@@ -49,10 +49,28 @@ and OverlayFS. In order to update kernel in Ubuntu 14.04 LTS to 4.2, run:
...
@@ -49,10 +49,28 @@ and OverlayFS. In order to update kernel in Ubuntu 14.04 LTS to 4.2, run:
apt-get install linux-image-generic-lts-wily
apt-get install linux-image-generic-lts-wily
.. attention:: Operators performing an evaluation or deployment should use a
stable branch. Operators performing development (or developers) should use
master.
.. note:: Install is *very* sensitive about version of components. Please
.. note:: Install is *very* sensitive about version of components. Please
review carefully because default Operating System repos are likely out of
review carefully because default Operating System repos are likely out of
date.
date.
Dependencies for the stable branch are:
===================== =========== =========== =========================
Component Min Version Max Version Comment
===================== =========== =========== =========================
Ansible 1.9.4 < 2.0.0 On deployment host
Docker 1.10.0 none On target nodes
Docker Python 1.6.0 none On target nodes
Python Jinja2 2.6.0 none On deployment host
===================== =========== =========== =========================
Dependencies for the master branch are:
===================== =========== =========== =========================
===================== =========== =========== =========================
Component Min Version Max Version Comment
Component Min Version Max Version Comment
===================== =========== =========== =========================
===================== =========== =========== =========================
...
@@ -244,9 +262,34 @@ requirements it can be installed by:
...
@@ -244,9 +262,34 @@ requirements it can be installed by:
apt-get install ansible
apt-get install ansible
.. attention:: Kolla uses PBR in its implementation. PBR provides version
information to Kolla about the package in use. This information is later
used when building images to specify the Docker tag used in the image built.
When installing the Kolla package via pip, PBR will always use the PBR version
information. When obtaining a copy of the software via git, PBR will use the
git version information, but **ONLY** if Kolla has not been pip installed via
the pip package manager. This is why there is an operator workflow and a
developer workflow.
Installing Kolla for evaluation or deployment
---------------------------------------------
Install Kolla
Install Kolla and its dependencies:
-------------
::
pip install kolla
Kolla holds configurations files in ``etc/kolla``. Copy the configuration files
to ``/etc``:
::
cd kolla
cp -r etc/kolla /etc/
Installing Kolla and dependencies for development
-------------------------------------------------
To clone the Kolla repo:
To clone the Kolla repo:
...
@@ -254,11 +297,14 @@ To clone the Kolla repo:
...
@@ -254,11 +297,14 @@ To clone the Kolla repo:
git clone https://git.openstack.org/openstack/kolla
git clone https://git.openstack.org/openstack/kolla
To install Kolla
tools and
Python dependencies use:
To install Kolla
's
Python dependencies use:
::
::
pip install kolla/
pip install -r kolla/requirements.txt -r kolla/test-requirements.txt
.. note:: This does not actually install Kolla. Many commands in this documentation are named
differently in the tools directory.
Kolla holds configurations files in ``etc/kolla``. Copy the configuration files
Kolla holds configurations files in ``etc/kolla``. Copy the configuration files
to ``/etc``:
to ``/etc``:
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment