
Bump our CI to Mitaka packaging: * on Ubuntu using UCA proposed (testing) packages for Mitaka * on Centos using RDO current (master) packages for Mitaka Depends-On: I3a2e677c2bd349322cfb08d5dc73c1ced38c3f60 Change-Id: I6f2d55f59ea57228f46e4733bfe952867f29dfa1
38 lines
1.1 KiB
Puppet
38 lines
1.1 KiB
Puppet
class openstack_integration::repos {
|
|
|
|
case $::osfamily {
|
|
'Debian': {
|
|
include ::apt
|
|
class { '::openstack_extras::repo::debian::ubuntu':
|
|
repo => 'proposed',
|
|
release => 'mitaka', # drop this line when mitaka is stable released
|
|
package_require => true,
|
|
}
|
|
}
|
|
'RedHat': {
|
|
class { '::openstack_extras::repo::redhat::redhat':
|
|
# pin a recent delorean but will be current-passed-ci later when RDO will be ready
|
|
manage_rdo => false,
|
|
repo_hash => {
|
|
'mitaka-current' => {
|
|
'baseurl' => 'http://trunk.rdoproject.org/centos7/f9/69/f9694ad5989d24363df812b08e36bd3b30807257_e3635ace/',
|
|
'descr' => 'Mitaka trunk',
|
|
'gpgcheck' => 'no',
|
|
'priority' => 1,
|
|
},
|
|
'delorean-deps' => {
|
|
'baseurl' => 'http://buildlogs.centos.org/centos/7/cloud/$basearch/openstack-liberty/',
|
|
'descr' => 'Liberty delorean-deps',
|
|
'gpgcheck' => 'no',
|
|
'priority' => 2,
|
|
},
|
|
}
|
|
}
|
|
}
|
|
default: {
|
|
fail("Unsupported osfamily (${::osfamily})")
|
|
}
|
|
}
|
|
|
|
}
|