Fabric fabric = getFabric();
// we must use the local IP address of the ZooKeeper URL when creating a cloud container so that it can connect
// properly to the ZK node if its on the cloud
ProfileNode defaultProfile = getVersionNode().getProfileNode("default");
if (defaultProfile != null && fabric != null) {
ProfileDTO profile = defaultProfile.getProfile();
if (profile != null) {
Map<String, String> config = profile.getConfigurations().get("io.fabric8.zookeeper");
if (config != null) {
String zkUrl = config.get("zookeeper.url");
if (zkUrl != null) {