Print more useful information after provisioning

Print not only gateway IP, but also chef server and dashboard URLs.

Change-Id: Ic7378c5d081f8d5362f52e730252262646cdfcbf
This commit is contained in:
Yun Mao 2013-05-20 18:32:38 -04:00
parent b12e367e95
commit 0b793d8f82
1 changed files with 4 additions and 2 deletions

View File

@ -142,8 +142,10 @@ class Orchestrator(object):
self._deploy_vxlan_network()
self._setup_controller()
self._setup_workers()
print ("Your inception cloud is ready!!! gateway IP=%s" %
self._gateway_floating_ip.ip)
print "Your inception cloud is ready!!!"
print "Gateway IP is %s" % self._gateway_floating_ip.ip
print "Chef server WebUI is http://%s:4040" % self._chefserver_ip
print "OpenStack dashboard is https://%s" % self._controller_ip
except Exception:
print traceback.format_exc()
if atomic: