Merge "Removed the db create tasks"
This commit is contained in:
commit
5809f38246
@ -0,0 +1,5 @@
|
|||||||
|
---
|
||||||
|
upgrade:
|
||||||
|
- The database create and user creates have been removed
|
||||||
|
from the ``os_neutron`` role. These tasks have been relocated
|
||||||
|
to the playbooks.
|
@ -13,32 +13,6 @@
|
|||||||
# See the License for the specific language governing permissions and
|
# See the License for the specific language governing permissions and
|
||||||
# limitations under the License.
|
# limitations under the License.
|
||||||
|
|
||||||
- name: Create DB for service
|
|
||||||
mysql_db:
|
|
||||||
login_user: "{{ galera_root_user }}"
|
|
||||||
login_password: "{{ galera_root_password }}"
|
|
||||||
login_host: "{{ neutron_galera_address }}"
|
|
||||||
name: "{{ neutron_galera_database }}"
|
|
||||||
state: "present"
|
|
||||||
tags:
|
|
||||||
- neutron-db-setup
|
|
||||||
|
|
||||||
- name: Grant access to the DB for the service
|
|
||||||
mysql_user:
|
|
||||||
login_user: "{{ galera_root_user }}"
|
|
||||||
login_password: "{{ galera_root_password }}"
|
|
||||||
login_host: "{{ neutron_galera_address }}"
|
|
||||||
name: "{{ neutron_galera_user }}"
|
|
||||||
password: "{{ neutron_container_mysql_password }}"
|
|
||||||
host: "{{ item }}"
|
|
||||||
state: "present"
|
|
||||||
priv: "{{ neutron_galera_database }}.*:ALL"
|
|
||||||
with_items:
|
|
||||||
- "localhost"
|
|
||||||
- "%"
|
|
||||||
tags:
|
|
||||||
- neutron-db-setup
|
|
||||||
|
|
||||||
- name: Get neutron migrations facts
|
- name: Get neutron migrations facts
|
||||||
neutron_migrations_facts:
|
neutron_migrations_facts:
|
||||||
release: newton
|
release: newton
|
||||||
|
Loading…
Reference in New Issue
Block a user