78d38b0a96
The script tools/normalize_projects_yaml.py in project-config is run as periodic job on the proposal slave. It needs the Python yaml module, so install it. Change-Id: I113dcfa13da34b3981de8910e6d07d69c5f95dfc
54 lines
1.5 KiB
Puppet
54 lines
1.5 KiB
Puppet
# Slave used for automatically proposing changes to Gerrit,
|
|
# Transifex and other tools.
|
|
#
|
|
# == Class: openstack_project::translation_slave
|
|
#
|
|
class openstack_project::proposal_slave (
|
|
$jenkins_ssh_public_key,
|
|
$proposal_ssh_public_key,
|
|
$proposal_ssh_private_key,
|
|
$jenkins_gitfullname = 'OpenStack Jenkins',
|
|
$jenkins_gitemail = 'jenkins@openstack.org',
|
|
$project_config_repo = 'https://git.openstack.org/openstack-infra/project-config',
|
|
$zanata_server_url,
|
|
$zanata_server_user,
|
|
$zanata_server_api_key,
|
|
) {
|
|
|
|
class { '::zanata::client':
|
|
server_url => $zanata_server_url,
|
|
server_user => $zanata_server_user,
|
|
server_api_key => $zanata_server_api_key,
|
|
}
|
|
|
|
class { 'openstack_project::slave':
|
|
ssh_key => $jenkins_ssh_public_key,
|
|
jenkins_gitfullname => $jenkins_gitfullname,
|
|
jenkins_gitemail => $jenkins_gitemail,
|
|
project_config_repo => $project_config_repo,
|
|
}
|
|
|
|
package { ['Babel', 'pyopenssl', 'ndg-httpsclient', 'pyasn1',
|
|
'pyyaml', 'requestsexceptions']:
|
|
ensure => latest,
|
|
provider => pip,
|
|
require => Class['pip'],
|
|
}
|
|
|
|
file { '/home/jenkins/.ssh/id_rsa':
|
|
owner => 'jenkins',
|
|
group => 'jenkins',
|
|
mode => '0400',
|
|
require => File['/home/jenkins/.ssh'],
|
|
content => $proposal_ssh_private_key,
|
|
}
|
|
|
|
file { '/home/jenkins/.ssh/id_rsa.pub':
|
|
owner => 'jenkins',
|
|
group => 'jenkins',
|
|
mode => '0400',
|
|
require => File['/home/jenkins/.ssh'],
|
|
content => $proposal_ssh_public_key,
|
|
}
|
|
}
|