
This is a stash between 2 patches, that need to land together: 1/ Bump RDO packaging to a very recent Mitaka repo URL so we can have latest Nova & Gnocchi, that contains some importants changes. Related-Bug: #1542069 Depends-On: Icf4a4b38fbba4fd2e4a20c7c3ffeacf1cc86085e 2/ Update nova.pp with new parameters for Neutron / Nova communications Related-Bug: #1542486 Depends-On: I1a99a050ba70399f045930e26e52719bb53a75b3 Change-Id: Idc14417cc09ee4ec58b343e57d67b0bd2efeecf2
48 lines
1.4 KiB
Puppet
48 lines
1.4 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,
|
|
}
|
|
# 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 => 'ceph.com',
|
|
}
|
|
}
|
|
'RedHat': {
|
|
class { '::openstack_extras::repo::redhat::redhat':
|
|
# yum-plugin-priorities is already managed by ::ceph::repo
|
|
manage_priorities => false,
|
|
manage_rdo => false,
|
|
repo_hash => {
|
|
'mitaka-current' => {
|
|
'baseurl' => 'https://trunk.rdoproject.org/centos7/5b/14/5b14d1e1de78ca59521b953f7e4e345665e6cea8_563ab7b1/',
|
|
'descr' => 'Mitaka Current',
|
|
'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})")
|
|
}
|
|
}
|
|
|
|
class { '::ceph::repo': }
|
|
|
|
}
|