Rewrite use of ::mysql::server in zanata::mysql
::mysql::server has dropped use of config_hash to tune aspects of the deployed mysql service. Rewrite the class included inside zanata::mysql to use overrides. Change-Id: I6dae4744812dc2469afc947e272cc9aa14e70788
This commit is contained in:
parent
68138b5240
commit
2f141c5326
@ -26,12 +26,14 @@ class zanata::mysql(
|
|||||||
) {
|
) {
|
||||||
|
|
||||||
class { '::mysql::server':
|
class { '::mysql::server':
|
||||||
config_hash => {
|
root_password => $mysql_root_password,
|
||||||
'root_password' => $mysql_root_password,
|
override_options => {
|
||||||
'default_engine' => 'InnoDB',
|
'mysqld' => {
|
||||||
'bind_address' => $mysql_bind_address,
|
'default-storage-engine' => 'InnoDB',
|
||||||
'port' => $mysql_port,
|
'bind-address' => $mysql_bind_address,
|
||||||
}
|
'port' => $mysql_port,
|
||||||
|
}
|
||||||
|
},
|
||||||
}
|
}
|
||||||
|
|
||||||
include ::mysql::server::account_security
|
include ::mysql::server::account_security
|
||||||
|
Loading…
x
Reference in New Issue
Block a user