Add auth role to ansible

Add a auth role so ansible can deploy
keystone.

Change-Id: I3f41fe150654451aae6271cce59ddeb807945043
This commit is contained in:
Fang Fenghua 2015-05-02 22:45:36 +08:00 committed by Jeff Peeler
parent c1ae401823
commit 5a1b0008f2
3 changed files with 15 additions and 0 deletions

View File

@ -6,3 +6,6 @@ support
[message-broker:children]
support
[keystone:children]
support

View File

@ -0,0 +1,7 @@
---
- name: Bringing up keystone service(s)
docker_compose:
project_name: keystone
compose_file: "{{ koalla_directory }}/compose/keystone.yml"
command: up
no_recreate: true

View File

@ -8,3 +8,8 @@
roles:
- message-broker
tags: message-broker
- hosts: keystone
roles:
- keystone
tags: keystone