Role os_barbican for OpenStack-Ansible
Go to file
Travis Truman d4f029bf31 Only install to virtual environment
The role had no previous support for installation in a virtualenv

Change-Id: I176f811e5ec7e0705037f53997f28bdbed40f0d9
Implements: blueprint only-install-venvs
2016-07-14 08:06:31 -04:00
defaults Only install to virtual environment 2016-07-14 08:06:31 -04:00
doc Update sphinx configuration 2016-07-12 16:51:56 +01:00
extras Enable functional convergence testing 2016-04-12 11:27:15 -07:00
handlers Only install to virtual environment 2016-07-14 08:06:31 -04:00
meta Remove pip_lock_down dependency 2016-06-07 23:39:16 -05:00
releasenotes Update sphinx configuration 2016-07-12 16:51:56 +01:00
tasks Only install to virtual environment 2016-07-14 08:06:31 -04:00
templates Only install to virtual environment 2016-07-14 08:06:31 -04:00
tests Update tox configuration 2016-07-08 15:33:42 +01:00
vars Remove duplicate apt package installation 2016-06-15 12:49:46 -04:00
.gitignore Add .swp files to .gitignore 2016-05-05 11:45:08 -07:00
.gitreview Implement base configuration for OpenStack-CI 2016-03-22 12:12:44 -07:00
.travis.yml Initialize galaxy role 2016-02-23 15:30:30 -06:00
CONTRIBUTING.rst Implement base configuration for OpenStack-CI 2016-03-22 12:12:44 -07:00
README.rst Cleanup/standardize usage of tags 2016-07-08 12:06:08 -04:00
Vagrantfile Only install to virtual environment 2016-07-14 08:06:31 -04:00
other-requirements.txt Use master git branches when testing 2016-05-05 10:32:19 -07:00
run_tests.sh Only install to virtual environment 2016-07-14 08:06:31 -04:00
setup.cfg Implement base configuration for OpenStack-CI 2016-03-22 12:12:44 -07:00
setup.py Implement base configuration for OpenStack-CI 2016-03-22 12:12:44 -07:00
test-requirements.txt Implement doc8 checks for docs 2016-07-13 12:54:52 +01:00
tox.ini Implement doc8 checks for docs 2016-07-13 12:54:52 +01:00

README.rst

OpenStack-Ansible Barbican

tags

openstack, barbican, cloud, ansible

category

*nix

This Ansible role installs and configures OpenStack Barbican.

Default Variables

../../defaults/main.yml

Required Variables

barbican_galera_address barbican_galera_password barbican_rabbitmq_password barbican_service_password keystone_admin_user_name keystone_auth_admin_password keystone_admin_tenant_name

Example Playbook

- name: Install barbican server
  hosts: barbican_all
  user: root
  roles:
    - role: "os_barbican"
  vars:
    external_lb_vip_address: 172.16.24.1
    internal_lb_vip_address: 192.168.0.1
    barbican_galera_address: "{{ internal_lb_vip_address }}"
    barbican_service_password: SuperSecretePassword1
    barbican_galera_password: SuperSecretePassword2
    barbican_rabbitmq_password: SuperSecretePassword3
    keystone_admin_user_name: admin
    keystone_auth_admin_password: SuperSecretePassword4
    keystone_admin_tenant_name: admin

Tags

This role supports two tags: barbican-install and barbican-config

The barbican-install tag can be used to install and upgrade.

The barbican-config tag can be used to maintain configuration of the service.