Merge "Document source glean installs in simple-init"

This commit is contained in:
Jenkins 2016-09-20 23:05:53 +00:00 committed by Gerrit Code Review
commit 4d79e5f519

View File

@ -33,3 +33,28 @@ not there.
Finally, glean will handle ssh-keypair-injection from config Finally, glean will handle ssh-keypair-injection from config
drive if cloud-init is not installed. drive if cloud-init is not installed.
Chosing glean installation source
---------------------------------
By default glean is installed using pip using the latest release on pypi.
It is also possible to install glean from a specified git repository
location. This is useful for debugging and testing new glean changes
for example. To do this you need to set these variables::
DIB_INSTALLTYPE_simple_init=repo
DIB_REPOLOCATION_glean=/path/to/glean/repo
DIB_REPOREF_glean=name_of_git_ref
For example to test glean change 364516 do::
git clone https://git.openstack.org/openstack-infra/glean /tmp/glean
cd /tmp/glean
git review -d 364516
git checkout -b my-test-ref
Then set your DIB env vars like this before running DIB::
DIB_INSTALLTYPE_simple_init=repo
DIB_REPOLOCATION_glean=/tmp/glean
DIB_REPOREF_glean=my-test-ref