Update default release to rocky

The master branch is currently targeting to deploy rocky, so change the
default release name accordingly.

Change-Id: I11d7bb06b30b70d64aec7418280f62013cb5b979
This commit is contained in:
Jens Harbott 2019-03-21 10:37:53 +00:00
parent f5e211b62b
commit 860084ffdf
2 changed files with 5 additions and 5 deletions

View File

@ -124,7 +124,7 @@ default['openstack']['secret']['user_passwords_data_bag'] = 'user_passwords'
# needs.
# The coordinated release of OpenStack codename
default['openstack']['release'] = 'queens'
default['openstack']['release'] = 'rocky'
# The Ubuntu Cloud Archive has packages for multiple Ubuntu releases. For
# more information, see: https://wiki.ubuntu.com/ServerTeam/CloudArchive.

View File

@ -29,7 +29,7 @@ describe 'openstack-common::default' do
node.override['openstack']['apt']['live_updates_enabled'] = true
expect(chef_run).to add_apt_repository('openstack-ppa').with(
uri: 'http://ubuntu-cloud.archive.canonical.com/ubuntu',
distribution: 'xenial-updates/queens',
distribution: 'xenial-updates/rocky',
components: ['main'],
cache_rebuild: true
)
@ -39,7 +39,7 @@ describe 'openstack-common::default' do
node.override['openstack']['apt']['live_updates_enabled'] = false
expect(chef_run).to_not add_apt_repository('openstack-ppa').with(
uri: 'http://ubuntu-cloud.archive.canonical.com/ubuntu',
distribution: 'xenial-updates/queens',
distribution: 'xenial-updates/rocky',
components: ['main']
)
end
@ -47,7 +47,7 @@ describe 'openstack-common::default' do
it 'configures openstack proposed repository' do
expect(chef_run).to add_apt_repository('openstack-ppa-proposed').with(
uri: 'http://ubuntu-cloud.archive.canonical.com/ubuntu',
distribution: 'xenial-proposed/queens',
distribution: 'xenial-proposed/rocky',
components: ['main'],
cache_rebuild: true
)
@ -57,7 +57,7 @@ describe 'openstack-common::default' do
node.override['openstack']['is_release'] = true
expect(chef_run).to_not add_apt_repository('openstack-ppa-proposed').with(
uri: 'http://ubuntu-cloud.archive.canonical.com/ubuntu',
distribution: 'xenial-proposed/queens',
distribution: 'xenial-proposed/rocky',
components: ['main']
)
end