-
Notifications
You must be signed in to change notification settings - Fork 51
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
481 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
# @summary A profile for the rpm repo machines | ||
# | ||
# @param stable_foreman | ||
# Latest Foreman release that users expect | ||
# | ||
# @param https | ||
# Whether to enable HTTPS. This is typically wanted but can only be enabled | ||
# in a 2 pass setup. First Apache needs to run for Letsencrypt to function. | ||
# Then Letsencrypt can be enabled. Also useful to turn off in test setups. | ||
class profiles::repo::rpm ( | ||
String[1] $stable_foreman, | ||
Boolean $https = true, | ||
) { | ||
class { 'web': | ||
https => $https, | ||
} | ||
contain web | ||
|
||
class { 'web::vhost::rpm': | ||
stable_foreman => $stable_foreman, | ||
} | ||
contain web::vhost::rpm | ||
|
||
contain web::vhost::stagingrpm | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
<h1>Pulpcore packages</h1> | ||
|
||
These are RPM builds for <a href="https://pulpproject.org">Pulp 3</a> and various plugins for use by <a href="https://theforeman.org/plugins/katello/">Katello</a>. They are only intended to be used by Katello. Only branches used by Katello are maintained. No explicit end of life announcements will be made. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
User-agent: * | ||
Disallow: /foreman/nightly/ | ||
Disallow: /pulpcore/nightly/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
User-agent: * | ||
Disallow: / |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,106 @@ | ||
# @summary Set up the rpm vhost | ||
# @api private | ||
class web::vhost::rpm ( | ||
String[1] $stable_foreman, | ||
Stdlib::Fqdn $servername = 'rpm.theforeman.org', | ||
Stdlib::Absolutepath $rpm_directory = '/var/www/vhosts/rpm/htdocs', | ||
Stdlib::Absolutepath $rpm_staging_directory = '/var/www/vhosts/stagingrpm/htdocs/', | ||
String $user = 'rpmrepo', | ||
) { | ||
$rpm_directory_config = [ | ||
{ | ||
path => $rpm_directory, | ||
options => ['+Indexes', '+FollowSymLinks'], | ||
expires_active => 'on', | ||
expires_default => 'access plus 2 minutes', | ||
}, | ||
{ | ||
path => '.+\.(bz2|gz|rpm|xz)$', | ||
provider => 'filesmatch', | ||
expires_active => 'on', | ||
expires_default => 'access plus 30 days', | ||
}, | ||
{ | ||
path => 'repomd.xml', | ||
provider => 'files', | ||
expires_active => 'on', | ||
expires_default => 'access plus 2 minutes', | ||
}, | ||
] | ||
|
||
$deploy_rpmrepo_context = { | ||
'servername' => $servername, | ||
'rpm_directory' => $rpm_directory, | ||
'rpm_staging_directory' => $rpm_staging_directory, | ||
} | ||
|
||
secure_ssh::receiver_setup { $user: | ||
user => $user, | ||
foreman_search => 'host ~ node*.jenkins.osuosl.theforeman.org and (name = external_ip4 or name = external_ip6)', | ||
script_content => epp('web/deploy-rpmrepo.sh.epp', $deploy_rpmrepo_context), | ||
} | ||
|
||
include apache::mod::expires | ||
include apache::mod::dir | ||
include apache::mod::autoindex | ||
include apache::mod::alias | ||
include apache::mod::mime | ||
|
||
web::vhost { 'rpm': | ||
servername => $servername, | ||
docroot => $rpm_directory, | ||
docroot_owner => $user, | ||
docroot_group => $user, | ||
docroot_mode => '0755', | ||
directories => $rpm_directory_config, | ||
} | ||
|
||
if $facts['os']['family'] == 'RedHat' { | ||
package { 'createrepo_c': | ||
ensure => present, | ||
} | ||
} | ||
|
||
file { "${rpm_directory}/robots.txt": | ||
ensure => file, | ||
owner => $user, | ||
group => $user, | ||
mode => '0644', | ||
content => file('web/rpm/robots.txt'), | ||
} | ||
|
||
file { "${rpm_directory}/HEADER.html": | ||
ensure => file, | ||
owner => $user, | ||
group => $user, | ||
mode => '0644', | ||
content => epp("${module_name}/rpm/HEADER.html.epp", { | ||
'stable_foreman' => $stable_foreman, | ||
'servername' => $servername, | ||
}), | ||
} | ||
|
||
['candlepin', 'foreman', 'pulpcore'].each |$directory| { | ||
file { ["${rpm_directory}/${directory}"]: | ||
ensure => directory, | ||
owner => $user, | ||
group => $user, | ||
mode => '0755', | ||
} | ||
|
||
exec { "fastly-purge-${directory}-latest": | ||
command => "fastly-purge-find 'https://${servername}' ${rpm_directory} ${directory}/latest/", | ||
path => '/bin:/usr/bin:/usr/local/bin', | ||
require => File['/usr/local/bin/fastly-purge-find'], | ||
refreshonly => true, | ||
} | ||
} | ||
|
||
file { "${rpm_directory}/pulpcore/HEADER.html": | ||
ensure => file, | ||
owner => $user, | ||
group => $user, | ||
mode => '0644', | ||
content => file('web/rpm/pulpcore-HEADER.html'), | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
# @summary Set up the rpm staging vhost | ||
# @api private | ||
class web::vhost::stagingrpm ( | ||
Array[String[1]] $usernames, | ||
Stdlib::Fqdn $servername = 'stagingrpm.theforeman.org', | ||
Stdlib::Absolutepath $rpm_staging_directory = '/var/www/vhosts/stagingrpm/htdocs', | ||
String $user = 'rpmrepostage', | ||
Stdlib::Absolutepath $home = "/home/${user}", | ||
) { | ||
$rpm_staging_directory_config = [ | ||
{ | ||
path => $rpm_staging_directory, | ||
options => ['Indexes', 'FollowSymLinks'], | ||
expires_active => 'on', | ||
expires_default => 'access plus 2 minutes', | ||
}, | ||
{ | ||
path => '.+\.(bz2|gz|rpm|xz)$', | ||
provider => 'filesmatch', | ||
expires_active => 'on', | ||
expires_default => 'access plus 30 days', | ||
}, | ||
{ | ||
path => 'repomd.xml', | ||
provider => 'files', | ||
expires_active => 'on', | ||
expires_default => 'access plus 2 minutes', | ||
}, | ||
] | ||
|
||
include apache::mod::expires | ||
include apache::mod::dir | ||
include apache::mod::autoindex | ||
include apache::mod::alias | ||
include apache::mod::mime | ||
|
||
$authorized_keys = flatten($usernames.map |$name| { | ||
split(file("users/${name}-authorized_keys"), "\n") | ||
}) | ||
|
||
secure_ssh::rsync::receiver_setup { $user: | ||
user => $user, | ||
homedir => $home, | ||
homedir_mode => '0750', | ||
foreman_search => 'host ~ node*.jenkins.*.theforeman.org and (name = external_ip4 or name = external_ip6)', | ||
authorized_keys => $authorized_keys, | ||
script_content => epp("${module_name}/deploy-stagingrpm.sh.epp", { | ||
'home' => $home, | ||
'rpm_staging_directory' => $rpm_staging_directory, | ||
}), | ||
} | ||
|
||
web::vhost { 'stagingrpm': | ||
servername => $servername, | ||
docroot => $rpm_staging_directory, | ||
docroot_owner => $user, | ||
docroot_group => $user, | ||
docroot_mode => '0755', | ||
directories => $rpm_staging_directory_config, | ||
} | ||
|
||
file { "${rpm_staging_directory}/robots.txt": | ||
ensure => file, | ||
owner => 'root', | ||
group => 'root', | ||
mode => '0644', | ||
content => file('web/stagingrpm/robots.txt'), | ||
} | ||
|
||
file { "${rpm_staging_directory}/HEADER.html": | ||
ensure => file, | ||
owner => 'root', | ||
group => 'root', | ||
mode => '0644', | ||
content => epp("${module_name}/stagingrpm/HEADER.html.epp", { | ||
'servername' => $servername, | ||
}), | ||
} | ||
|
||
['candlepin', 'foreman', 'pulpcore'].each |$directory| { | ||
file { ["${rpm_staging_directory}/${directory}"]: | ||
ensure => directory, | ||
owner => $user, | ||
group => $user, | ||
mode => '0755', | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.