You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
$arrayInfo=New-PfaRestOperation-resourceType array -restOperationType GET -flasharray $flasharray-SkipCertificateCheck
114
+
if ($arrayInfo.version-eq"5.3.9")
115
+
{
116
+
throw"Found Purity 5.3.9--this is not a supported release for vVols with VCF. Please reach out to Pure Support to upgrade Purity to 5.3.10 or higher."
117
+
}
118
+
if (($arrayinfo.version.split(".")[0] -eq"5") -and ($arrayinfo.version.split(".")[1] -lt3))
119
+
{
120
+
throw"Found a Purity release earlier than 5.3.x (currently at $($arrayinfo.version)). Please reach out to Pure Support to upgrade Purity to 5.3.x or higher."
if (($vcfNetworkInfo.type-contains"iSCSI") -eq$false)
135
+
{
136
+
throw"The specified network pool $($VcfNetworkPool) does not have an iSCSI-type vLAN assigned to it. Please add one or choose a network pool that does. This is required for iSCSI-vVols deployment."
137
+
}
138
+
if (($vcfNetworkInfo.type-contains"VMOTION") -eq$false)
139
+
{
140
+
throw"The specified network pool $($VcfNetworkPool) does not have a VMOTION-type vLAN assigned to it. Please add one or choose a network pool that does. This is required for any deployment type."
141
+
}
142
+
}
143
+
}
113
144
Write-Progress-parentid 1-Id 2-Activity "Connecting to FlashArray"-Status "Connected to $($FlashArrayFqdn)"-PercentComplete 100
114
145
$esxiConnections=@()
115
146
for ($i=0;$i-lt$EsxiHostFqdn.count;$i++)
@@ -248,7 +279,7 @@ function Initialize-PfaVcfWorkloadDomain {
0 commit comments