diff --git a/tools/marvin/marvin/deployDataCenter.py b/tools/marvin/marvin/deployDataCenter.py index ac96d097084..20908ca59b6 100644 --- a/tools/marvin/marvin/deployDataCenter.py +++ b/tools/marvin/marvin/deployDataCenter.py @@ -84,8 +84,9 @@ specify a valid config file" % cfgFile) clusterresponse = self.apiClient.addCluster(clustercmd) clusterId = clusterresponse[0].id - self.addHosts(cluster.hosts, zoneId, podId, clusterId, - cluster.hypervisor) + if cluster.hypervisor.lower() != "vmware": + self.addHosts(cluster.hosts, zoneId, podId, clusterId, + cluster.hypervisor) self.createPrimaryStorages(cluster.primaryStorages, zoneId, podId, clusterId)