Prepare 2023.2 release

Change-Id: I39e3465dc4a8e17cee91058e08f482b45a2a5aa9
This commit is contained in:
Takashi Kajinami 2023-10-03 16:49:58 +09:00
parent 234f149694
commit 6a84dfb6d5
6 changed files with 16 additions and 16 deletions

View File

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

View File

@ -4,7 +4,7 @@
# OS family repo classes.
#
class openstack_extras::repo::redhat::params {
$release = 'antelope'
$release = 'bobcat'
$centos_mirror_url = 'http://mirror.stream.centos.org'

View File

@ -53,5 +53,5 @@
],
"source": "https://opendev.org/openstack/puppet-openstack_extras.git",
"summary": "Puppet OpenStack Extras Module",
"version": "22.0.0"
"version": "23.0.0"
}

View File

@ -14,7 +14,7 @@ describe 'openstack_extras::repo::debian::debian' do
let :paramclass_defaults do
{
:release => 'antelope'
:release => 'bobcat'
}
end
@ -23,11 +23,11 @@ describe 'openstack_extras::repo::debian::debian' do
end
context 'with default params' do
it { should contain_exec('/usr/bin/extrepo enable openstack_antelope').with(
it { should contain_exec('/usr/bin/extrepo enable openstack_bobcat').with(
:command => "/bin/true # comment to satisfy puppet syntax requirements
apt-get update
apt-get install -y extrepo
extrepo enable openstack_antelope
extrepo enable openstack_bobcat
apt-get update
",
)}
@ -58,14 +58,14 @@ apt-get update
end
it { should contain_apt__source('debian-openstack-backports').with(
:location => 'http://bullseye-antelope.debian.net/debian',
:release => 'bullseye-antelope-backports',
:location => 'http://bullseye-bobcat.debian.net/debian',
:release => 'bullseye-bobcat-backports',
:repos => 'main',
)}
it { should contain_apt__source('debian-openstack-backports-nochange').with(
:location => 'http://bullseye-antelope.debian.net/debian',
:release => 'bullseye-antelope-backports-nochange',
:location => 'http://bullseye-bobcat.debian.net/debian',
:release => 'bullseye-bobcat-backports-nochange',
:repos => 'main'
)}

View File

@ -13,7 +13,7 @@ describe 'openstack_extras::repo::debian::ubuntu' do
let :paramclass_defaults do
{
:release => 'antelope'
:release => 'bobcat'
}
end
@ -28,7 +28,7 @@ describe 'openstack_extras::repo::debian::ubuntu' do
it { should contain_apt__source('ubuntu-cloud-archive').with(
:location => 'http://ubuntu-cloud.archive.canonical.com/ubuntu',
:release => 'jammy-updates/antelope',
:release => 'jammy-updates/bobcat',
:repos => 'main',
)}
@ -127,7 +127,7 @@ describe 'openstack_extras::repo::debian::ubuntu' do
it { should contain_apt__source('ubuntu-cloud-archive').with(
:location => 'http://mirror.dfw.rax.openstack.org/ubuntu-cloud-archive',
:release => 'jammy-proposed/antelope',
:release => 'jammy-proposed/bobcat',
:repos => 'main',
)}
end

View File

@ -13,8 +13,8 @@ describe 'openstack_extras::repo::redhat::redhat' do
:before => 'Anchor[openstack_extras_redhat]',
)}
it { should contain_yumrepo('rdo-release').with(
:baseurl => "http://mirror.stream.centos.org/SIGs/$stream/cloud/$basearch/openstack-antelope/",
:descr => "OpenStack Antelope Repository",
:baseurl => "http://mirror.stream.centos.org/SIGs/$stream/cloud/$basearch/openstack-bobcat/",
:descr => "OpenStack Bobcat Repository",
:gpgkey => 'file:///etc/pki/rpm-gpg/RPM-GPG-KEY-CentOS-SIG-Cloud',
:enabled => '1',
:gpgcheck => '1',
@ -126,7 +126,7 @@ describe 'openstack_extras::repo::redhat::redhat' do
end
it { should contain_yumrepo('rdo-release').with(
:baseurl => "http://foo.bar/SIGs/$stream/cloud/$basearch/openstack-antelope/",
:baseurl => "http://foo.bar/SIGs/$stream/cloud/$basearch/openstack-bobcat/",
)}
end