Merge "Move database creation into role (keystone)"

This commit is contained in:
Zuul 2018-06-20 16:08:17 +00:00 committed by Gerrit Code Review
commit feef46a4b4
2 changed files with 0 additions and 14 deletions

View File

@ -19,11 +19,6 @@
# If there are any Ceilometer hosts in the environment, then enable its usage
keystone_ceilometer_enabled: "{{ (groups['ceilometer_all'] is defined) and (groups['ceilometer_all'] | length > 0) }}"
# The MySQL details for the keystone service
keystone_galera_user: keystone
keystone_galera_database: keystone
keystone_galera_address: "{{ galera_address }}"
# The system user for all keystone services
keystone_system_user_name: keystone

View File

@ -60,15 +60,6 @@
- groups[keystone_oslomsg_notify_host_group] | length > 0
run_once: yes
- name: Configure MySQL user
include: common-tasks/mysql-db-user.yml
vars:
user_name: "{{ keystone_galera_user }}"
password: "{{ keystone_container_mysql_password }}"
login_host: "{{ keystone_galera_address }}"
db_name: "{{ keystone_galera_database }}"
run_once: yes
- name: Installation and setup of Keystone