Revert "MySQL database cleanup for paste.o.o"
Now that we've determined how to adjust Trove configuration parameters to override extremely short default connection timeouts imposed by our provider, switch back to using a remote database for the loggeit installation on paste.openstack.org. This reverts commit 8cad8d737f3a53650159ab7c00cb8e3b4649e2fb. Change-Id: I7f172b2b4f09703f1360aff0b1fef902fc935067
This commit is contained in:
parent
27b040913a
commit
8cf5b6abd5
@ -341,6 +341,7 @@ node 'paste.openstack.org' {
|
||||
}
|
||||
class { 'openstack_project::paste':
|
||||
db_password => hiera('paste_db_password'),
|
||||
db_host => hiera('paste_db_host'),
|
||||
mysql_root_password => hiera('paste_mysql_root_password'),
|
||||
}
|
||||
}
|
||||
|
@ -2,6 +2,7 @@
|
||||
#
|
||||
class openstack_project::paste (
|
||||
$db_password,
|
||||
$db_host,
|
||||
$mysql_root_password,
|
||||
$vhost_name = $::fqdn,
|
||||
) {
|
||||
@ -9,7 +10,7 @@ class openstack_project::paste (
|
||||
lodgeit::site { 'openstack':
|
||||
port => '5000',
|
||||
db_password => $db_password,
|
||||
db_host => 'localhost',
|
||||
db_host => $db_host,
|
||||
db_user => 'openstack',
|
||||
vhost_name => $vhost_name,
|
||||
image => 'header-bg2.png',
|
||||
|
Loading…
x
Reference in New Issue
Block a user