e35a6e7c73
Put jenkins_master into jenkins::master and jenkins_job_builder into jenkins::job_builder and jenkins_slave into jenkins::slave. Change-Id: Icb0e3071894730c17d8f36f49e9d34979d9c568e Reviewed-on: https://review.openstack.org/11249 Approved: Monty Taylor <mordred@inaugust.com> Reviewed-by: Monty Taylor <mordred@inaugust.com> Tested-by: Jenkins
20 lines
419 B
Puppet
20 lines
419 B
Puppet
class openstack_project::pypi {
|
|
include tmpreaper
|
|
include unattended_upgrades
|
|
include openstack_project
|
|
|
|
# include jenkins slave so that build deps are there for the pip download
|
|
class { 'jenkins::slave':
|
|
ssh_key => "",
|
|
user => false
|
|
}
|
|
|
|
class { 'openstack_project::server':
|
|
iptables_public_tcp_ports => [80]
|
|
}
|
|
|
|
class { "pypimirror":
|
|
projects => $openstack_project::project_list,
|
|
}
|
|
}
|