Browse Source

Merge pull request #1269 from kwoodson/inventory_alias_fix

Supporting awsutil inventory calls with version and hosttype aliases.
Kenny Woodson 9 years ago
parent
commit
001098c793
1 changed files with 8 additions and 7 deletions
  1. 8 7
      bin/openshift_ansible/awsutil.py

+ 8 - 7
bin/openshift_ansible/awsutil.py

@@ -89,7 +89,7 @@ class AwsUtil(object):
 
     def get_host_types(self):
         """Searches for host-type tags in the inventory and returns all host-types found."""
-        pattern = re.compile(r'^oo_host-type_(.*)')
+        pattern = re.compile(r'^oo_hosttype_(.*)')
 
         host_types = []
         inv = self.get_inventory()
@@ -177,19 +177,20 @@ class AwsUtil(object):
     def gen_clusterid_tag(clu):
         """Generate the clusterid tag
         """
-        return "tag_clusterid_%s" % clu
+        return "oo_clusterid_%s" % clu
 
     @staticmethod
     def gen_env_tag(env):
         """Generate the environment tag
         """
-        return "tag_environment_%s" % env
+        return "oo_environment_%s" % env
 
-    def gen_host_type_tag(self, host_type):
+    def gen_host_type_tag(self, host_type, version):
         """Generate the host type tag
         """
-        host_type = self.resolve_host_type(host_type)
-        return "tag_host-type_%s" % host_type
+        if version == '2':
+            host_type = self.resolve_host_type(host_type)
+        return "oo_hosttype_%s" % host_type
 
     # This function uses all of these params to perform a filters on our host inventory.
     # pylint: disable=too-many-arguments
@@ -226,7 +227,7 @@ class AwsUtil(object):
             retval.intersection_update(env_hosts)
 
         if host_type:
-            retval.intersection_update(inv.get(self.gen_host_type_tag(host_type), []))
+            retval.intersection_update(inv.get(self.gen_host_type_tag(host_type, version), []))
 
         if version != 'all':
             retval.intersection_update(inv.get(AwsUtil.gen_version_tag(version), []))