]> git.apps.os.sepia.ceph.com Git - teuthology.git/commitdiff
Add support for rh version 1.3.1
authorVasu Kulkarni <vasu@redhat.com>
Thu, 3 Sep 2015 16:01:51 +0000 (12:01 -0400)
committerVasu Kulkarni <vasu@redhat.com>
Fri, 4 Sep 2015 17:18:40 +0000 (13:18 -0400)
This adds support for RH version 1.3.1, previously it will work
with only 1.3.0 downstream builds

Signed-off-by: Vasu Kulkarni <vasu@redhat.com>
teuthology/task/install.py

index 72c45cd2769a8ea58e7782c16757743064fe53fc..76a6493d3bd87d040bc67ce30e512ab2c1aadf15 100644 (file)
@@ -714,7 +714,7 @@ def rh_install(ctx, config):
     :param config: the config dict
     """
     version = config['rhbuild']
-    rh_versions = ['1.3.0']
+    rh_versions = ['1.3.0', '1.3.1']
     if version in rh_versions:
         log.info("%s is a supported version", version)
     else:
@@ -758,7 +758,7 @@ def rh_install_pkgs(ctx, remote, installed_version):
     :param remote: the teuthology.orchestra.remote.Remote object
     """
     pkgs = ['ceph-deploy']
-    rh_version_check = {'0.94.1': '1.3.0'}
+    rh_version_check = {'0.94.1': '1.3.0', '0.94.2': '1.3.1'}
     for pkg in pkgs:
         log.info("Check if ceph-deploy is already installed on node %s", remote.shortname)
         remote.run(args=['sudo', 'yum', 'clean', 'metadata'])