Browse Source

Fix metadata access in OpenStack inventory

Some versions of shade (e.g. the one currently in RHEL) only allow a
dict-like interface.
Tomas Sedovic 7 years ago
parent
commit
de410074cf
1 changed files with 1 additions and 1 deletions
  1. 1 1
      playbooks/openstack/inventory.py

+ 1 - 1
playbooks/openstack/inventory.py

@@ -89,7 +89,7 @@ def build_inventory():
 
     for server in cluster_hosts:
         if 'group' in server.metadata:
-            group = server.metadata.group
+            group = server.metadata.get('group')
             if group not in inventory:
                 inventory[group] = {'hosts': []}
             inventory[group]['hosts'].append(server.name)