diff options
author | baigk <baiguoku@huawei.com> | 2015-08-05 01:31:07 -0400 |
---|---|---|
committer | baigk <baiguoku@huawei.com> | 2015-08-05 05:36:31 +0000 |
commit | 974a3c3bf5b71cd6b07c1b4b51044bc535ff4456 (patch) | |
tree | 3047960616cf8e797d86c4bd19cdca06738b122a /deploy/adapters/ansible/roles/database/templates/data.j2 | |
parent | d05b5f04c92034eae1675dc8102247a3cc3315f7 (diff) |
support deployment openstack juno with ansible for compass in ubuntu 14.04
JIRA: COMPASS-4
Change-Id: I7adc565325c2a0cbf878b2aea022b31d118748dd
Signed-off-by: baigk <baiguoku@huawei.com>
Diffstat (limited to 'deploy/adapters/ansible/roles/database/templates/data.j2')
-rw-r--r-- | deploy/adapters/ansible/roles/database/templates/data.j2 | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/deploy/adapters/ansible/roles/database/templates/data.j2 b/deploy/adapters/ansible/roles/database/templates/data.j2 new file mode 100644 index 00000000..c894b322 --- /dev/null +++ b/deploy/adapters/ansible/roles/database/templates/data.j2 @@ -0,0 +1,39 @@ +#!/bin/sh +mysql -uroot -Dmysql <<EOF +drop database if exists keystone; +drop database if exists glance; +drop database if exists neutron; +drop database if exists nova; +drop database if exists cinder; + +CREATE DATABASE keystone; +{% for host in ['%', 'localhost', inventory_hostname] %} +GRANT ALL ON keystone.* TO 'keystone'@'{{ host }}' IDENTIFIED BY '{{ KEYSTONE_DBPASS }}'; +{% endfor %} + +CREATE DATABASE glance; +{% for host in ['%', 'localhost', inventory_hostname] %} +GRANT ALL ON glance.* TO 'glance'@'{{ host }}' IDENTIFIED BY '{{ GLANCE_DBPASS }}'; +{% endfor %} + +CREATE DATABASE neutron; +{% for host in ['%', 'localhost', inventory_hostname] %} +GRANT ALL ON neutron.* TO 'neutron'@'{{ host }}' IDENTIFIED BY '{{ NEUTRON_DBPASS }}'; +{% endfor %} + +CREATE DATABASE nova; +{% for host in ['%', 'localhost', inventory_hostname] %} +GRANT ALL ON nova.* TO 'nova'@'{{ host }}' IDENTIFIED BY '{{ NOVA_DBPASS }}'; +{% endfor %} + +CREATE DATABASE cinder; +{% for host in ['%', 'localhost', inventory_hostname] %} +GRANT ALL ON cinder.* TO 'cinder'@'{{ host }}' IDENTIFIED BY '{{ CINDER_DBPASS }}'; +{% endfor %} + +{% if WSREP_SST_USER is defined %} +{% for host in ['%', 'localhost', inventory_hostname] %} +GRANT ALL ON *.* TO '{{ WSREP_SST_USER }}'@'{{ host }}' IDENTIFIED BY '{{ WSREP_SST_PASS }}'; +{% endfor %} +{% endif %} +EOF |