db_setup: refactor database setup to a common file

This patch refactors the database creation to db_setup.yml which
will eventually be managed by openstack-ansible-tests.

This also re-orders the mq_setup to be done earlier so these system
level dependencies are ready before service activation.

Change-Id: I3f459958e7d420e7adfc6f3747080e3fc20f59d7
This commit is contained in:
Guilherme Steinmüller 2019-06-03 19:02:33 +00:00
parent 60adb8d910
commit 7224c37af7
4 changed files with 94 additions and 65 deletions

View File

@ -1,46 +0,0 @@
---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Create DB for service
mysql_db:
login_user: "{{ galera_root_user }}"
login_password: "{{ galera_root_password }}"
login_host: "{{ aodh_db_address }}"
name: "{{ aodh_database_name }}"
state: "present"
delegate_to: "{{ aodh_db_setup_host }}"
no_log: True
- name: Grant access to the DB for the service
mysql_user:
login_user: "{{ galera_root_user }}"
login_password: "{{ galera_root_password }}"
login_host: "{{ aodh_db_address }}"
name: "{{ aodh_database_user }}"
password: "{{ aodh_container_db_password }}"
host: "{{ item }}"
state: "present"
priv: "{{ aodh_database_name }}.*:ALL"
delegate_to: "{{ aodh_db_setup_host }}"
with_items:
- "localhost"
- "%"
no_log: True
- name: Perform a Aodh DB sync
command: "{{ aodh_bin }}/aodh-dbsync"
become: yes
become_user: "{{ aodh_system_user_name }}"
changed_when: false

20
tasks/aodh_db_sync.yml Normal file
View File

@ -0,0 +1,20 @@
---
# Copyright 2016, Rackspace US, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
- name: Perform a Aodh DB sync
command: "{{ aodh_bin }}/aodh-dbsync"
become: yes
become_user: "{{ aodh_system_user_name }}"
changed_when: false

41
tasks/db_setup.yml Normal file
View File

@ -0,0 +1,41 @@
---
# Copyright 2019, VEXXHOST, Inc.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# WARNING:
# This file is maintained in the openstack-ansible-tests repository.
# https://git.openstack.org/cgit/openstack/openstack-ansible-tests/tree/sync/tasks/db_setup.yml
# If you need to modify this file, update the one in the openstack-ansible-tests
# repository. Once it merges there, the changes will automatically be proposed to
# all the repositories which use it.
- name: Setup Database Service (MariaDB)
delegate_to: "{{ _oslodb_setup_host }}"
tags:
- common-mariadb
block:
- name: Create database for service
mysql_db:
name: "{{ item.name }}"
loop: "{{ _oslodb_databases }}"
- name: Grant access to the database for the service
mysql_user:
name: "{{ item.1.username }}"
password: "{{ item.1.password }}"
host: "{{ item.1.host | default('%') }}"
priv: "{{ item.0.name }}.*:{{ item.1.priv | default('ALL') }}"
append_privs: yes
loop: "{{ _oslodb_databases | subelements('users') }}"
no_log: true

View File

@ -47,6 +47,38 @@
tags:
- always
- import_tasks: db_setup.yml
when:
- inventory_hostname == groups['aodh_all'][0]
vars:
_oslodb_setup_host: "{{ aodh_db_setup_host }}"
_oslodb_databases:
- name: "{{ aodh_database_name }}"
users:
- username: "{{ aodh_database_user }}"
password: "{{ aodh_container_db_password }}"
tags:
- common-db
- aodh-config
- import_tasks: mq_setup.yml
when:
- inventory_hostname == groups['aodh_all'][0]
vars:
_oslomsg_rpc_setup_host: "{{ aodh_oslomsg_rpc_setup_host }}"
_oslomsg_rpc_userid: "{{ aodh_oslomsg_rpc_userid }}"
_oslomsg_rpc_password: "{{ aodh_oslomsg_rpc_password }}"
_oslomsg_rpc_vhost: "{{ aodh_oslomsg_rpc_vhost }}"
_oslomsg_rpc_transport: "{{ aodh_oslomsg_rpc_transport }}"
_oslomsg_notify_setup_host: "{{ aodh_oslomsg_notify_setup_host }}"
_oslomsg_notify_userid: "{{ aodh_oslomsg_notify_userid }}"
_oslomsg_notify_password: "{{ aodh_oslomsg_notify_password }}"
_oslomsg_notify_vhost: "{{ aodh_oslomsg_notify_vhost }}"
_oslomsg_notify_transport: "{{ aodh_oslomsg_notify_transport }}"
tags:
- common-mq
- aodh-config
- include_tasks: aodh_pre_install.yml
tags:
- aodh-install
@ -85,25 +117,7 @@
- aodh-config
- systemd-service
- import_tasks: mq_setup.yml
when:
- inventory_hostname == groups['aodh_all'][0]
vars:
_oslomsg_rpc_setup_host: "{{ aodh_oslomsg_rpc_setup_host }}"
_oslomsg_rpc_userid: "{{ aodh_oslomsg_rpc_userid }}"
_oslomsg_rpc_password: "{{ aodh_oslomsg_rpc_password }}"
_oslomsg_rpc_vhost: "{{ aodh_oslomsg_rpc_vhost }}"
_oslomsg_rpc_transport: "{{ aodh_oslomsg_rpc_transport }}"
_oslomsg_notify_setup_host: "{{ aodh_oslomsg_notify_setup_host }}"
_oslomsg_notify_userid: "{{ aodh_oslomsg_notify_userid }}"
_oslomsg_notify_password: "{{ aodh_oslomsg_notify_password }}"
_oslomsg_notify_vhost: "{{ aodh_oslomsg_notify_vhost }}"
_oslomsg_notify_transport: "{{ aodh_oslomsg_notify_transport }}"
tags:
- common-mq
- aodh-config
- include_tasks: aodh_db_setup.yml
- include_tasks: aodh_db_sync.yml
when:
- inventory_hostname == groups['aodh_all'][0]
tags: