Merge "decouple mysql setup from gerrit module"

This commit is contained in:
Jenkins 2013-10-26 13:42:23 +00:00 committed by Gerrit Code Review
commit 22e07fc8e6
5 changed files with 50 additions and 31 deletions

View File

@ -71,8 +71,6 @@
# #
class gerrit( class gerrit(
$war = '', $war = '',
$mysql_password = '',
$mysql_root_password = '',
$email_private_key = '', $email_private_key = '',
$vhost_name = $::fqdn, $vhost_name = $::fqdn,
$canonicalweburl = "https://${::fqdn}/", $canonicalweburl = "https://${::fqdn}/",
@ -261,29 +259,6 @@ class gerrit(
require => File['/home/gerrit2/review_site/etc'], require => File['/home/gerrit2/review_site/etc'],
} }
# Set up MySQL.
class { 'mysql::server':
config_hash => {
'root_password' => $mysql_root_password,
'default_engine' => 'InnoDB',
'bind_address' => '127.0.0.1',
}
}
include mysql::server::account_security
mysql::db { 'reviewdb':
user => 'gerrit2',
password => $mysql_password,
host => 'localhost',
grant => ['all'],
charset => 'latin1',
require => [
Class['mysql::server'],
Class['mysql::server::account_security'],
],
}
# Set up apache. # Set up apache.
apache::vhost { $vhost_name: apache::vhost { $vhost_name:

View File

@ -0,0 +1,32 @@
# == Class: gerrit::mysql
#
class gerrit::mysql(
$mysql_root_password = '',
$database_name = '',
$database_user = '',
$database_password = '',
) {
class { 'mysql::server':
config_hash => {
'root_password' => $mysql_root_password,
'default_engine' => 'InnoDB',
'bind_address' => '127.0.0.1',
}
}
include mysql::server::account_security
mysql::db { $database_name:
user => $database_user,
password => $database_password,
host => 'localhost',
grant => ['all'],
charset => 'latin1',
require => [
Class['mysql::server'],
Class['mysql::server::account_security'],
],
}
}
# vim:sw=2:ts=2:expandtab:textwidth=79

View File

@ -45,8 +45,6 @@ class openstack_project::gerrit (
$github_oauth_token = '', $github_oauth_token = '',
$github_project_username = '', $github_project_username = '',
$github_project_password = '', $github_project_password = '',
$mysql_password = '',
$mysql_root_password = '',
$trivial_rebase_role_id = '', $trivial_rebase_role_id = '',
$email_private_key = '', $email_private_key = '',
$replicate_local = true, $replicate_local = true,
@ -155,8 +153,6 @@ class openstack_project::gerrit (
contactstore_appsec => $contactstore_appsec, contactstore_appsec => $contactstore_appsec,
contactstore_pubkey => $contactstore_pubkey, contactstore_pubkey => $contactstore_pubkey,
contactstore_url => $contactstore_url, contactstore_url => $contactstore_url,
mysql_password => $mysql_password,
mysql_root_password => $mysql_root_password,
email_private_key => $email_private_key, email_private_key => $email_private_key,
replicate_local => $replicate_local, replicate_local => $replicate_local,
replication => $replication, replication => $replication,

View File

@ -68,6 +68,15 @@ class openstack_project::review (
$swift_username = '', $swift_username = '',
$swift_password = '' $swift_password = ''
) { ) {
# Setup MySQL
class { 'gerrit::mysql':
mysql_root_password => $mysql_root_password,
database_name => 'reviewdb',
database_user => 'gerrit2',
database_password => $mysql_password,
}
class { 'openstack_project::gerrit': class { 'openstack_project::gerrit':
ssl_cert_file => ssl_cert_file =>
'/etc/ssl/certs/review.openstack.org.pem', '/etc/ssl/certs/review.openstack.org.pem',

View File

@ -22,6 +22,15 @@ class openstack_project::review_dev (
$swift_username = '', $swift_username = '',
$swift_password = '' $swift_password = ''
) { ) {
# Setup MySQL
class { 'gerrit::mysql':
mysql_root_password => $mysql_root_password,
database_name => 'reviewdb',
database_user => 'gerrit2',
database_password => $mysql_password,
}
class { 'openstack_project::gerrit': class { 'openstack_project::gerrit':
vhost_name => 'review-dev.openstack.org', vhost_name => 'review-dev.openstack.org',
canonicalweburl => 'https://review-dev.openstack.org/', canonicalweburl => 'https://review-dev.openstack.org/',
@ -51,8 +60,6 @@ class openstack_project::review_dev (
github_oauth_token => $github_oauth_token, github_oauth_token => $github_oauth_token,
github_project_username => $github_project_username, github_project_username => $github_project_username,
github_project_password => $github_project_password, github_project_password => $github_project_password,
mysql_password => $mysql_password,
mysql_root_password => $mysql_root_password,
trivial_rebase_role_id => trivial_rebase_role_id =>
'trivial-rebase@review-dev.openstack.org', 'trivial-rebase@review-dev.openstack.org',
email_private_key => $email_private_key, email_private_key => $email_private_key,