Skip to content

Instantly share code, notes, and snippets.

@chadlung
Created February 6, 2014 00:13
Show Gist options
  • Save chadlung/8836042 to your computer and use it in GitHub Desktop.
Save chadlung/8836042 to your computer and use it in GitHub Desktop.
Running Barbican with DevStack (pre-Barbican entry into DevStack)
$ sudo apt-get update
$ sudo apt-get install git -y
$ git clone https://github.com/chadlung/devstack.git
$ ./devstack/tools/create-stack-user.sh
$ mv devstack/ /opt/stack/
$ chown -R stack:stack /opt/stack/devstack/
$ su - stack
$ cd /opt/stack/devstack/
# Switch to topic branch
$ git checkout Initial-Barbican-Support
$ nano local.conf
# Add this to the local.conf file
[[local|localrc]]
enable_service barbican
KEYSTONE_TOKEN_FORMAT=UUID
DATABASE_PASSWORD=password
RABBIT_PASSWORD=password
SERVICE_TOKEN=password
SERVICE_PASSWORD=password
ADMIN_PASSWORD=password
$ ./stack.sh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment