1c8c0d7c03
1) scenario001: disable ceilometer tests on Ubuntu Because we need this backport in UCA: https://review.openstack.org/#/c/318503/ And we won't have it before... who knows? Let's disable the tests for Ceilometer on Ubuntu until UCA provides a packaging update. Let's also disable Telemetry at all on Ubuntu, since Ceilometer can't be tested until UCA does the backport. 2) add RDO Newton dependencies repository, so we have paramiko >= 2.0 and have a more stable gate. 3) Update RDO trunk URL to have a very recent URL. 4) Update nova endpoints to match with what is required upstream (2.1) 5) Un-pin Tempest, so we keep testing master (our desire in our master gate but we pin it in stable branches). Change-Id: I10dc1beeca3ec47fd4c3a866aa3e1d3bc9d0aa81
65 lines
1.9 KiB
Puppet
65 lines
1.9 KiB
Puppet
class openstack_integration::repos {
|
|
|
|
case $::osfamily {
|
|
'Debian': {
|
|
include ::apt
|
|
class { '::openstack_extras::repo::debian::ubuntu':
|
|
release => 'mitaka',
|
|
package_require => true,
|
|
}
|
|
# Ceph is both packaged on UCA & ceph.com
|
|
# Official packages are on ceph.com so we want to make sure
|
|
# Ceph will be installed from there.
|
|
apt::pin { 'ceph':
|
|
priority => 1001,
|
|
origin => 'download.ceph.com',
|
|
}
|
|
}
|
|
'RedHat': {
|
|
class { '::openstack_extras::repo::redhat::redhat':
|
|
manage_rdo => false,
|
|
manage_epel => false,
|
|
repo_hash => {
|
|
'newton-current' => {
|
|
'baseurl' => 'https://trunk.rdoproject.org/centos7-master/df/47/df479520d42cdb40cc52e16ac67f5a55532a617a_eb829029/',
|
|
'descr' => 'Newton current',
|
|
'gpgcheck' => 'no',
|
|
'priority' => 1,
|
|
},
|
|
'newton-delorean-deps' => {
|
|
'baseurl' => 'http://cbs.centos.org/repos/cloud7-openstack-newton-testing/x86_64/os/',
|
|
'descr' => 'Newton delorean-deps',
|
|
'gpgcheck' => 'no',
|
|
'priority' => 1,
|
|
},
|
|
'mitaka-delorean-deps' => {
|
|
'baseurl' => 'http://buildlogs.centos.org/centos/7/cloud/$basearch/openstack-mitaka/',
|
|
'descr' => 'Mitaka delorean-deps',
|
|
'gpgcheck' => 'no',
|
|
'priority' => 2,
|
|
},
|
|
}
|
|
}
|
|
}
|
|
default: {
|
|
fail("Unsupported osfamily (${::osfamily})")
|
|
}
|
|
}
|
|
|
|
# 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
|
|
}
|
|
|
|
class { '::ceph::repo':
|
|
enable_sig => $enable_sig,
|
|
enable_epel => $enable_epel,
|
|
}
|
|
|
|
}
|