89e7dd222d
This is intendend to service only static workers. Change-Id: Ic5b2558c93aa77fbf4e14e5a7c2b679b27a0d7d6 Depends-On: I0086c25d4817a6a3302648bd0560762791a0e572
100 lines
2.8 KiB
Puppet
100 lines
2.8 KiB
Puppet
# == Class: openstack_project::zuul_launcher
|
|
#
|
|
class openstack_project::zuul_launcher(
|
|
$vhost_name = $::fqdn,
|
|
$gearman_server = '127.0.0.1',
|
|
$gerrit_server = '',
|
|
$gerrit_user = '',
|
|
$gerrit_ssh_host_key = '',
|
|
$zuul_ssh_private_key = '',
|
|
$url_pattern = '',
|
|
$zuul_url = '',
|
|
$status_url = 'http://status.openstack.org/zuul/',
|
|
$swift_authurl = '',
|
|
$swift_auth_version = '',
|
|
$swift_user = '',
|
|
$swift_key = '',
|
|
$swift_tenant_name = '',
|
|
$swift_region_name = '',
|
|
$swift_default_container = '',
|
|
$swift_default_logserver_prefix = '',
|
|
$swift_default_expiry = 7200,
|
|
$proxy_ssl_cert_file_contents = '',
|
|
$proxy_ssl_key_file_contents = '',
|
|
$proxy_ssl_chain_file_contents = '',
|
|
$sysadmins = [],
|
|
$statsd_host = '',
|
|
$project_config_repo = '',
|
|
$project_config_base = '',
|
|
$git_email = 'jenkins@openstack.org',
|
|
$git_name = 'OpenStack Jenkins',
|
|
$workspace_root = '/home/jenkins/workspace',
|
|
$worker_private_key_file = '/var/lib/zuul/ssh/id_rsa',
|
|
$worker_username = 'jenkins',
|
|
$sites = [],
|
|
$nodes = [],
|
|
$accept_nodes = '',
|
|
) {
|
|
|
|
class { '::project_config':
|
|
url => $project_config_repo,
|
|
base => $project_config_base,
|
|
}
|
|
|
|
file { '/etc/jenkins_jobs':
|
|
ensure => directory,
|
|
}
|
|
|
|
file { '/etc/jenkins_jobs/config':
|
|
ensure => directory,
|
|
owner => 'root',
|
|
group => 'root',
|
|
mode => '0755',
|
|
recurse => true,
|
|
purge => true,
|
|
force => true,
|
|
source => $::project_config::jenkins_job_builder_config_dir,
|
|
require => [File['/etc/jenkins_jobs'],
|
|
$::project_config::config_dir],
|
|
notify => Exec['zuul-launcher-reload'],
|
|
}
|
|
|
|
file { '/home/zuul/.ssh':
|
|
ensure => directory,
|
|
owner => 'zuul',
|
|
group => 'zuul',
|
|
mode => '0700',
|
|
require => User['zuul'],
|
|
}
|
|
|
|
file { '/home/zuul/.ssh/config':
|
|
ensure => present,
|
|
source => 'puppet:///modules/openstack_project/zuul/launcher_ssh_config',
|
|
owner => 'zuul',
|
|
group => 'zuul',
|
|
require => File['/home/zuul/.ssh'],
|
|
}
|
|
|
|
class { '::zuul':
|
|
vhost_name => $vhost_name,
|
|
gearman_server => $gearman_server,
|
|
gerrit_server => $gerrit_server,
|
|
gerrit_user => $gerrit_user,
|
|
zuul_ssh_private_key => $zuul_ssh_private_key,
|
|
zuul_url => $zuul_url,
|
|
git_email => $git_email,
|
|
git_name => $git_name,
|
|
revision => $revision,
|
|
git_source_repo => $git_source_repo,
|
|
jenkins_jobs => '/etc/jenkins_jobs/config',
|
|
workspace_root => $workspace_root,
|
|
worker_private_key_file => $worker_private_key_file,
|
|
worker_username => $worker_username,
|
|
sites => $sites,
|
|
nodes => $nodes,
|
|
accept_nodes => $accept_nodes,
|
|
}
|
|
|
|
class { 'zuul::launcher': }
|
|
}
|