mirror of https://github.com/apache/cloudstack.git
CLOUDSTACK-7010: Add domain to createZones in marvin
This commit is contained in:
parent
a9b3ab089d
commit
63ba1ddfb9
|
|
@ -88,6 +88,7 @@ class zone(object):
|
|||
self.pods = []
|
||||
self.secondaryStorages = []
|
||||
self.cacheStorages = []
|
||||
self.domain = None
|
||||
|
||||
|
||||
class trafficType(object):
|
||||
|
|
|
|||
|
|
@ -695,6 +695,7 @@ class DeployDataCenters(object):
|
|||
zonecmd.securitygroupenabled = zone.securitygroupenabled
|
||||
zonecmd.localstorageenabled = zone.localstorageenabled
|
||||
zonecmd.networktype = zone.networktype
|
||||
zonecmd.domain = zone.domain
|
||||
if zone.securitygroupenabled != "true":
|
||||
zonecmd.guestcidraddress = zone.guestcidraddress
|
||||
zoneId = self.createZone(zonecmd)
|
||||
|
|
|
|||
Loading…
Reference in New Issue