Bump default release to Pike

Change-Id: Ie362d8ba62653c15b5e6d89fa8db67772b2e97d1
This commit is contained in:
Mohammed Naser
2017-09-05 12:02:28 -04:00
parent 40f9262585
commit fbe6290b4e
5 changed files with 13 additions and 13 deletions

View File

@@ -4,7 +4,7 @@
# #
class openstack_extras::repo::debian::params class openstack_extras::repo::debian::params
{ {
$release = 'ocata' $release = 'pike'
$uca_name = 'ubuntu-cloud-archive' $uca_name = 'ubuntu-cloud-archive'
$uca_location = 'http://ubuntu-cloud.archive.canonical.com/ubuntu' $uca_location = 'http://ubuntu-cloud.archive.canonical.com/ubuntu'

View File

@@ -5,7 +5,7 @@
# #
class openstack_extras::repo::redhat::params class openstack_extras::repo::redhat::params
{ {
$release = 'ocata' $release = 'pike'
$repo_defaults = { 'enabled' => '1', $repo_defaults = { 'enabled' => '1',
'gpgcheck' => '1', 'gpgcheck' => '1',

View File

@@ -12,7 +12,7 @@ describe 'openstack_extras::repo::debian::debian' do
let :paramclass_defaults do let :paramclass_defaults do
{ {
:release => 'ocata' :release => 'pike'
} }
end end
@@ -37,13 +37,13 @@ describe 'openstack_extras::repo::debian::debian' do
it { is_expected.to contain_apt__source('debian_wheezy').with( it { is_expected.to contain_apt__source('debian_wheezy').with(
:location => 'http://archive.gplhost.com/debian', :location => 'http://archive.gplhost.com/debian',
:release => 'ocata', :release => 'pike',
:repos => 'main', :repos => 'main',
)} )}
it { is_expected.to contain_apt__source('debian_wheezy_backports').with( it { is_expected.to contain_apt__source('debian_wheezy_backports').with(
:location => 'http://archive.gplhost.com/debian', :location => 'http://archive.gplhost.com/debian',
:release => 'ocata-backports', :release => 'pike-backports',
:repos => 'main' :repos => 'main'
)} )}

View File

@@ -12,7 +12,7 @@ describe 'openstack_extras::repo::debian::ubuntu' do
let :paramclass_defaults do let :paramclass_defaults do
{ {
:release => 'ocata' :release => 'pike'
} }
end end
@@ -38,7 +38,7 @@ describe 'openstack_extras::repo::debian::ubuntu' do
it { is_expected.to contain_apt__source('ubuntu-cloud-archive').with( it { is_expected.to contain_apt__source('ubuntu-cloud-archive').with(
:location => 'http://ubuntu-cloud.archive.canonical.com/ubuntu', :location => 'http://ubuntu-cloud.archive.canonical.com/ubuntu',
:release => 'trusty-updates/ocata', :release => 'trusty-updates/pike',
:repos => 'main', :repos => 'main',
)} )}
@@ -138,7 +138,7 @@ describe 'openstack_extras::repo::debian::ubuntu' do
it { is_expected.to contain_apt__source('ubuntu-cloud-archive').with( it { is_expected.to contain_apt__source('ubuntu-cloud-archive').with(
:location => 'http://mirror.dfw.rax.openstack.org/ubuntu-cloud-archive', :location => 'http://mirror.dfw.rax.openstack.org/ubuntu-cloud-archive',
:release => 'trusty-proposed/ocata', :release => 'trusty-proposed/pike',
:repos => 'main', :repos => 'main',
)} )}
end end

View File

@@ -14,7 +14,7 @@ describe 'openstack_extras::repo::redhat::redhat' do
let :paramclass_defaults do let :paramclass_defaults do
{ {
:release => 'ocata', :release => 'pike',
:repo_defaults => { 'enabled' => '1', :repo_defaults => { 'enabled' => '1',
'gpgcheck' => '1', 'gpgcheck' => '1',
'notify' => "Exec[yum_refresh]", 'notify' => "Exec[yum_refresh]",
@@ -50,8 +50,8 @@ describe 'openstack_extras::repo::redhat::redhat' do
end end
it { is_expected.to contain_yumrepo('rdo-release').with( it { is_expected.to contain_yumrepo('rdo-release').with(
:baseurl => "http://mirror.centos.org/centos/7/cloud/$basearch/openstack-ocata/", :baseurl => "http://mirror.centos.org/centos/7/cloud/$basearch/openstack-pike/",
:descr => "OpenStack Ocata Repository", :descr => "OpenStack Pike Repository",
:gpgkey => "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Cloud", :gpgkey => "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Cloud",
:enabled => '1', :enabled => '1',
:gpgcheck => '1', :gpgcheck => '1',
@@ -191,8 +191,8 @@ describe 'openstack_extras::repo::redhat::redhat' do
end end
it { is_expected.to contain_yumrepo('rdo-release').with( it { is_expected.to contain_yumrepo('rdo-release').with(
:baseurl => "http://mirror.dfw.rax.openstack.org/centos/7/cloud/\$basearch/openstack-ocata/", :baseurl => "http://mirror.dfw.rax.openstack.org/centos/7/cloud/\$basearch/openstack-pike/",
:descr => "OpenStack Ocata Repository", :descr => "OpenStack Pike Repository",
:gpgkey => "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Cloud", :gpgkey => "file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Cloud",
:proxy => "http://my.proxy.com:8000" :proxy => "http://my.proxy.com:8000"
)} )}