Merge "Make 'jenkins-job-builder' repo configurable"

This commit is contained in:
Jenkins 2014-07-31 18:44:53 +00:00 committed by Gerrit Code Review
commit 6197962c8b
2 changed files with 11 additions and 5 deletions

View File

@ -4,6 +4,8 @@ class jenkins::job_builder (
$url = '',
$username = '',
$password = '',
$git_revision = 'master',
$git_url = 'https://git.openstack.org/openstack-infra/jenkins-job-builder'
) {
# A lot of things need yaml, be conservative requiring this package to avoid
@ -23,8 +25,8 @@ class jenkins::job_builder (
vcsrepo { '/opt/jenkins_job_builder':
ensure => latest,
provider => git,
revision => 'master',
source => 'https://git.openstack.org/openstack-infra/jenkins-job-builder',
revision => $git_revision,
source => $git_url,
}
exec { 'install_jenkins_job_builder':

View File

@ -4,6 +4,8 @@ class openstack_project::jenkins (
$vhost_name = $::fqdn,
$jenkins_jobs_password = '',
$jenkins_jobs_username = 'gerrig', # This is not a typo, well it isn't anymore.
$jenkins_git_url = 'https://git.openstack.org/openstack-infra/jenkins-job-builder',
$jenkins_git_revision = 'master',
$manage_jenkins_jobs = true,
$ssl_cert_file = '',
$ssl_key_file = '',
@ -115,9 +117,11 @@ class openstack_project::jenkins (
if $manage_jenkins_jobs == true {
class { '::jenkins::job_builder':
url => "https://${vhost_name}/",
username => $jenkins_jobs_username,
password => $jenkins_jobs_password,
url => "https://${vhost_name}/",
username => $jenkins_jobs_username,
password => $jenkins_jobs_password,
git_revision => $jenkins_git_revision,
git_url => $jenkins_git_url,
}
file { '/etc/jenkins_jobs/config':