]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
suite/util.py: Update Ubuntu default to Xenial 1534/head
authorDavid Galloway <dgallowa@redhat.com>
Thu, 9 Jul 2020 15:30:16 +0000 (11:30 -0400)
committerDavid Galloway <dgallowa@redhat.com>
Thu, 9 Jul 2020 15:40:06 +0000 (11:40 -0400)
This will need to change to Bionic when we stop supporting luminous or must test Octopus.

Signed-off-by: David Galloway <dgallowa@redhat.com>
teuthology/suite/test/test_util.py
teuthology/suite/util.py

index e4a811b6123fc68418ec4c70d0d1ef7293a6aca2..395860efb4b4e836a75b37df3fa635f4124c6b9f 100644 (file)
@@ -313,8 +313,8 @@ class TestDistroDefaults(object):
         assert util.get_distro_defaults('ubuntu', 'saya') == expected
 
     def test_distro_defaults_plana(self):
-        expected = ('x86_64', 'trusty',
-                    OS(name='ubuntu', version='14.04', codename='trusty'))
+        expected = ('x86_64', 'xenial',
+                    OS(name='ubuntu', version='16.04', codename='xenial'))
         assert util.get_distro_defaults('ubuntu', 'plana') == expected
 
     def test_distro_defaults_debian(self):
index f5803af50d98e151a985e857883d5814c6f0d651..90d6648909a66b2db18c3ac55adb2d30241efe0a 100644 (file)
@@ -140,7 +140,7 @@ def get_distro_defaults(distro, machine_type):
             os_version = '13.10'
             arch = 'armv7l'
         else:
-            os_version = '14.04'
+            os_version = '16.04'
     elif distro == 'debian':
         os_type = distro
         os_version = '7'