906eb4217b
- Move DB creation for every service to own task - Refactor Murano and Sahara DB configuration classes - Cherry-pick MySQL providers from upstream to allow DB creation and management on remote host - Remove openstack::db::mysql - Move database and user creation to a separete task - Either install local database or use an external one Implements: blueprint: detach-components-from-controllers Co-Authored-By: Sergii Golovatiuk <sgolovatiuk@mirantis.com> Co-Authored-By: Dmitry Ilyin <dilyin@mirantis.com> Change-Id: Iaf3b7913e8c79c08025dbdaf5f2beff7337ab644 Signed-off-by: Sergii Golovatiuk <sgolovatiuk@mirantis.com>
7 lines
193 B
Plaintext
7 lines
193 B
Plaintext
<%- %w(mysql client mysqldump mysqladmin mysqlcheck).each do |section| %>
|
|
[<%= section %>]
|
|
user = '<%= @db_user %>'
|
|
password = '<%= @db_password %>'
|
|
host = '<%= @db_host %>'
|
|
<%- end %>
|