Skip to content

Commit

Permalink
Merge pull request ceph#1785 from ceph/jammy
Browse files Browse the repository at this point in the history
opsys.py: Make Ubuntu 22.04 default
  • Loading branch information
zmc authored Aug 16, 2022
2 parents 9e7483c + 056e27a commit b1d387f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion teuthology/orchestra/opsys.py
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@
}

DEFAULT_OS_VERSION = dict(
ubuntu="20.04",
ubuntu="22.04",
fedora="25",
centos="8.stream",
opensuse="15.0",
Expand Down
2 changes: 1 addition & 1 deletion teuthology/test/test_get_distro_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_default_distro_version(self):
# Default distro is ubuntu, default version of ubuntu is 20.04
self.fake_ctx.os_version = None
distroversion = get_distro_version(self.fake_ctx)
assert distroversion == '20.04'
assert distroversion == '22.04'

def test_argument_version(self):
self.fake_ctx.os_version = '13.04'
Expand Down

0 comments on commit b1d387f

Please sign in to comment.