summaryrefslogtreecommitdiffstats
path: root/roles/openshift_facts
diff options
context:
space:
mode:
authorClayton Coleman <ccoleman@redhat.com>2017-01-30 16:21:14 -0500
committerClayton Coleman <ccoleman@redhat.com>2017-01-30 16:22:04 -0500
commit42dfc8eefd8c036f91b352eff98df714085d777e (patch)
tree6b8b9234f9b18f262289ff26b56f7fab6e8b467e /roles/openshift_facts
parent643d1d60919e3f2a258744e0c0b7b3a9105f9828 (diff)
downloadopenshift-42dfc8eefd8c036f91b352eff98df714085d777e.tar.gz
openshift-42dfc8eefd8c036f91b352eff98df714085d777e.tar.bz2
openshift-42dfc8eefd8c036f91b352eff98df714085d777e.tar.xz
openshift-42dfc8eefd8c036f91b352eff98df714085d777e.zip
GCE deployment fails due to invalid lookup
Data is only available under ['instance'] and split was in the wrong order. This deploys against GCE for me.
Diffstat (limited to 'roles/openshift_facts')
-rwxr-xr-xroles/openshift_facts/library/openshift_facts.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_facts/library/openshift_facts.py b/roles/openshift_facts/library/openshift_facts.py
index 3c8e2ab9c..0c7aad81e 100755
--- a/roles/openshift_facts/library/openshift_facts.py
+++ b/roles/openshift_facts/library/openshift_facts.py
@@ -1019,7 +1019,7 @@ def set_nodename(facts):
if 'cloudprovider' in facts and facts['cloudprovider']['kind'] == 'openstack':
facts['node']['nodename'] = facts['provider']['metadata']['hostname'].replace('.novalocal', '')
elif 'cloudprovider' in facts and facts['cloudprovider']['kind'] == 'gce':
- facts['node']['nodename'] = '.'.split(facts['provider']['metadata']['hostname'])[0]
+ facts['node']['nodename'] = facts['provider']['metadata']['instance']['hostname'].split('.')[0]
else:
facts['node']['nodename'] = facts['common']['hostname'].lower()
return facts