
This is follow-up of cfdf592942f1d2153eb0a3d0a4c7a0026cceda07 and fixes the circular dependency caused by the change. Change-Id: Ifb3cea24e9bc76dad6aeee359c812d828b6b0180
158 lines
5.4 KiB
Puppet
158 lines
5.4 KiB
Puppet
class openstack_integration::repos {
|
|
|
|
# To make litmus tests work.
|
|
if defined('$::ceph_version') and $::ceph_version != '' {
|
|
$ceph_version_real = $::ceph_version
|
|
} else {
|
|
$ceph_version_real = 'pacific'
|
|
}
|
|
case $::osfamily {
|
|
'Debian': {
|
|
case $::operatingsystem {
|
|
'Ubuntu': {
|
|
include apt
|
|
class { 'openstack_extras::repo::debian::ubuntu':
|
|
release => 'yoga',
|
|
package_require => true,
|
|
uca_location => pick($::uca_mirror_host, 'http://ubuntu-cloud.archive.canonical.com/ubuntu'),
|
|
}
|
|
}
|
|
'Debian': {
|
|
include apt
|
|
class { 'openstack_extras::repo::debian::debian':
|
|
release => 'yoga',
|
|
package_require => true,
|
|
}
|
|
}
|
|
default: {
|
|
fail("Unsupported package type (${::operatingsystem})")
|
|
}
|
|
}
|
|
|
|
$ceph_mirror_fallback = pick($::ceph_mirror_host, "http://download.ceph.com/debian-${ceph_version_real}/")
|
|
# Ceph is both packaged on UCA and official download.ceph.com packages
|
|
# which we mirror. We want to use the official packages or our mirror.
|
|
if $ceph_mirror_fallback !~ '^http://download.ceph.com/.*' {
|
|
$ceph_version_cap = capitalize($ceph_version_real)
|
|
apt::pin { 'ceph':
|
|
priority => 1001,
|
|
originator => "Ceph ${ceph_version_cap}",
|
|
}
|
|
} else {
|
|
apt::pin { 'ceph':
|
|
priority => 1001,
|
|
origin => 'download.ceph.com',
|
|
}
|
|
}
|
|
|
|
$enable_sig = false
|
|
$enable_epel = false
|
|
$ceph_mirror = $ceph_mirror_fallback
|
|
}
|
|
'RedHat': {
|
|
# Set specific variables for CentOS Stream 9
|
|
if versioncmp($::os['release']['major'], '9') >= 0 {
|
|
$powertools_repo = 'crb'
|
|
} else {
|
|
$powertools_repo = 'powertools'
|
|
}
|
|
|
|
if defined('$::centos_mirror_host') and $::centos_mirror_host != '' {
|
|
$centos_mirror = $::centos_mirror_host
|
|
} else {
|
|
$centos_mirror = $::os['release']['major'] ? {
|
|
'9' => 'http://mirror.stream.centos.org',
|
|
default => 'http://mirror.centos.org',
|
|
}
|
|
}
|
|
|
|
if defined('$::delorean_repo_path') and $::delorean_repo_path != '' {
|
|
$delorean_repo = $::delorean_repo_path
|
|
} else {
|
|
$delorean_repo = "https://trunk.rdoproject.org/centos${::os['release']['major']}-master/puppet-passed-ci/delorean.repo"
|
|
}
|
|
|
|
if defined('$::delorean_deps_repo_path') and $::delorean_deps_repo_path != '' {
|
|
$delorean_deps_repo = $::delorean_deps_repo_path
|
|
} else {
|
|
$delorean_deps_repo = "https://trunk.rdoproject.org/centos${::os['release']['major']}-master/delorean-deps.repo"
|
|
}
|
|
|
|
class { 'openstack_extras::repo::redhat::redhat':
|
|
manage_rdo => false,
|
|
manage_epel => false,
|
|
centos_mirror_url => $centos_mirror,
|
|
repo_source_hash => {
|
|
'delorean.repo' => $delorean_repo,
|
|
'delorean-deps.repo' => $delorean_deps_repo
|
|
},
|
|
repo_replace => false,
|
|
update_packages => true,
|
|
}
|
|
|
|
$ceph_mirror_fallback = $::os['release']['major'] ? {
|
|
'9' => "${centos_mirror}/SIGs/${::os['release']['major']}-stream/storage/x86_64/ceph-${ceph_version_real}/",
|
|
default => "${centos_mirror}/centos/${::os['release']['major']}-stream/storage/x86_64/ceph-${ceph_version_real}/",
|
|
}
|
|
|
|
if defined('$::ceph_mirror_host') and $::ceph_mirror_host != '' {
|
|
$ceph_mirror = pick($::ceph_mirror_host, $ceph_mirror_fallback)
|
|
} else {
|
|
$ceph_mirror = $ceph_mirror_fallback
|
|
}
|
|
# On CentOS, deploy Ceph using SIG repository and get rid of EPEL.
|
|
# https://wiki.centos.org/SpecialInterestGroup/Storage/
|
|
if $::operatingsystem == 'CentOS' {
|
|
$enable_sig = true
|
|
$enable_epel = false
|
|
} else {
|
|
$enable_sig = false
|
|
$enable_epel = true
|
|
}
|
|
|
|
# PowerTools is required on CentOS8 since Ussuri.
|
|
exec { 'enable-powertools':
|
|
command => "dnf config-manager --enable ${powertools_repo}",
|
|
path => '/usr/bin/',
|
|
unless => "test 0 -ne $(dnf repolist --enabled ${powertools_repo} | wc -l)"
|
|
}
|
|
}
|
|
default: {
|
|
fail("Unsupported osfamily (${::osfamily})")
|
|
}
|
|
}
|
|
|
|
if $::osfamily == 'RedHat' or $::operatingsystem == 'Ubuntu' {
|
|
class { 'ceph::repo':
|
|
enable_sig => $enable_sig,
|
|
enable_epel => $enable_epel,
|
|
ceph_mirror => $ceph_mirror,
|
|
}
|
|
}
|
|
|
|
if $::osfamily == 'RedHat' {
|
|
# NOTE(tobias-urdin): Install libibverbs to fix an issue where OVS outputs errors
|
|
# that causes the puppet-openvswitch module to fail parsing the output.
|
|
# This issue does not occur in integration testing but only module tests since some
|
|
# other package (probably nova) causes this package to be installed, or the yum upgrade
|
|
# part in integration catches it.
|
|
# Reported upstream: https://bugzilla.redhat.com/show_bug.cgi?id=1658141
|
|
package { 'libibverbs':
|
|
ensure => 'present',
|
|
}
|
|
|
|
# NOTE(tobias-urdin): Needed where augeas is used, like puppet-ovn.
|
|
package { 'ruby-augeas':
|
|
ensure => 'present',
|
|
}
|
|
Yumrepo<||> -> Package<| title == 'ruby-augeas' |>
|
|
}
|
|
|
|
if $::operatingsystem == 'Ubuntu' {
|
|
# NOTE(tobias-urdin): Needed where augeas is used, like puppet-ovn.
|
|
package { 'ruby-augeas':
|
|
ensure => 'present',
|
|
}
|
|
}
|
|
}
|