Add Ceph Luminous Debian mirrors

Change-Id: I60177c4783f5e0695ba4466fdbd181130b5934c1
This commit is contained in:
Mohammed Naser 2017-09-27 10:01:13 -04:00
parent 27edae5e22
commit 1c338227fa
No known key found for this signature in database
GPG Key ID: 481CBC90384AEC42
4 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,7 @@
Name: debian-ceph-luminous
Method: http://download.ceph.com/debian-luminous/
Components: main
UDebComponents: main
Architectures: amd64
GetInRelease: no
VerifyRelease: 460f3994

View File

@ -20,6 +20,7 @@ class openstack_project::mirror (
$npm_root = "${mirror_root}/npm" $npm_root = "${mirror_root}/npm"
$ceph_deb_hammer_root = "${mirror_root}/ceph-deb-hammer" $ceph_deb_hammer_root = "${mirror_root}/ceph-deb-hammer"
$ceph_deb_jewel_root = "${mirror_root}/ceph-deb-jewel" $ceph_deb_jewel_root = "${mirror_root}/ceph-deb-jewel"
$ceph_deb_luminous_root = "${mirror_root}/ceph-deb-luminous"
$gem_root = "${mirror_root}/gem" $gem_root = "${mirror_root}/gem"
$www_base = '/var/www' $www_base = '/var/www'
@ -178,6 +179,17 @@ class openstack_project::mirror (
] ]
} }
# Create the symlink to ceph-deb-luminous.
file { "${www_root}/ceph-deb-luminous":
ensure => link,
target => "${ceph_deb_luminous_root}",
owner => root,
group => root,
require => [
File["${www_root}"],
]
}
# Create the symlink to Ubuntu Cloud Archive. # Create the symlink to Ubuntu Cloud Archive.
file { "${www_root}/ubuntu-cloud-archive": file { "${www_root}/ubuntu-cloud-archive":
ensure => link, ensure => link,

View File

@ -248,6 +248,28 @@ class openstack_project::mirror_update (
] ]
} }
::openstack_project::reprepro { 'debian-ceph-luminous-reprepro-mirror':
confdir => '/etc/reprepro/debian-ceph-luminous',
basedir => '/afs/.openstack.org/mirror/ceph-deb-luminous',
distributions => 'openstack_project/reprepro/distributions.debian-ceph-luminous.erb',
updates_file => 'puppet:///modules/openstack_project/reprepro/debian-ceph-luminous-updates',
releases => ['xenial'],
}
cron { 'reprepro debian ceph luminous':
user => $user,
hour => '*/2',
minute => '0',
command => 'flock -n /var/run/reprepro/debian-ceph-luminous.lock reprepro-mirror-update /etc/reprepro/debian-ceph-luminous mirror.deb-luminous >>/var/log/reprepro/debian-ceph-luminous-mirror.log 2>&1',
environment => 'PATH=/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin',
require => [
File['/usr/local/bin/reprepro-mirror-update'],
File['/etc/afsadmin.keytab'],
File['/etc/reprepro.keytab'],
::Openstack_project::Reprepro['debian-ceph-luminous-reprepro-mirror'],
]
}
gnupg_key { 'Ceph Archive': gnupg_key { 'Ceph Archive':
ensure => present, ensure => present,
# 08B7 3419 AC32 B4E9 66C1 A330 E84A C2C0 460F 3994 # 08B7 3419 AC32 B4E9 66C1 A330 E84A C2C0 460F 3994

View File

@ -0,0 +1,11 @@
<% @releases.each do |release| -%>
Origin: Ceph Luminous
Codename: <%= release %>
Description: OpenStack Debian Ceph Luminous <%= release.capitalize %> mirror
Architectures: amd64
Components: main
Contents: .gz
Update: debian-ceph-luminous
Log: <%= @logdir %>/debian-ceph-luminous-<%= release %>.log
<% end -%>