solum/devstack
anilkumarthovi 6e7301b647 modified step to run devstack
Change-Id: I655e3b61d107376dde65e0f80bc8f9a3a336bc78
2017-11-28 18:20:55 +05:30
..
files Solum using apache WSGI when devstack install 2017-03-23 01:09:50 +00:00
devstack-provenance Remove SCREEN_LOGDIR from devstack setting 2017-09-22 08:32:47 +05:30
local.conf Remove SCREEN_LOGDIR from devstack setting 2017-09-22 08:32:47 +05:30
plugin.sh Merge "Devstack config solum rootwrap" 2017-09-20 14:49:58 +00:00
README.rst modified step to run devstack 2017-11-28 18:20:55 +05:30
settings Remove SCREEN_LOGDIR from devstack setting 2017-09-22 08:32:47 +05:30
solum.conf.sample Update the solum conf sample file 2017-08-08 04:03:32 +00:00

Enabling Solum in DevStack

  1. Install Docker version 1.7.0 using following steps (Solum has been tested with this version of Docker):

    echo deb http://get.docker.com/ubuntu docker main | sudo tee /etc/apt/sources.list.d/docker.list
    sudo apt-key adv --keyserver pgp.mit.edu --recv-keys 36A1D7869245C8950F966E92D8576A8BA88D21E9
    sudo apt-get update
    sudo apt-get install lxc-docker-1.7.0
  2. Download DevStack:

    git clone https://git.openstack.org/openstack-dev/devstack.git
    cd devstack
  3. Add this repo as an external repository:

    cat > local.conf <<END
    [[local|localrc]]
    enable_plugin solum git://git.openstack.org/openstack/solum
    END

    To use stable branches, make sure devstack is on that branch, and specify the branch name to enable_plugin, for example:

    enable_plugin solum https://git.openstack.org/openstack/solum stable/mitaka
  4. Run ./stack.sh.

Note

This setup will produce virtual machines, not Docker containers. For an example of the Docker setup, see:

https://wiki.openstack.org/wiki/Solum/Docker