Wednesday, 23 March 2016

Simple wrapper function for NaviSecCLI Pools for EMC VNX.


Takes the output of the pool info command and puts it into a powershell object for later use.

Function Get-PoolDetails {
Param(
[Parameter(Mandatory=$true)]$StorageProc
)
$PoolInfo = naviseccli -h $StorageProc storagepool -list
$poolLine1TAG = "Pool Name"
$poolLine2TAG = "Pool ID"
$poolLine3TAG = "LUNs"
$poolLine4TAG = "User Capacity \(GBs\)"
$poolLine5TAG = "Available Capacity \(GBs\)"
$OutTable = @()
foreach ($Line in $PoolInfo) {
#Iterate through each pool returned and create a PS object for it
if ($Line -match $poolLine1TAG) {
#Start of new pool, Create new object
$OutObject = "" | Select PoolName, PoolID, LUNs, CapGB, FreeGB
$OutObject.PoolName = $Line.Split(":",2)[1].Trim()
} elseif ($Line -match $poolLine2TAG) {
$OutObject.PoolID = $Line.Split(":",2)[1].Trim()
} elseif ($Line -match $poolLine3TAG) {
$OutObject.LUNs = $Line.Split(":",2)[1].Trim()
} elseif ($Line -match $poolLine4TAG) {
$OutObject.CapGB = $Line.Split(":",2)[1].Trim()
} elseif ($Line -match $poolLine5TAG) {
$OutObject.FreeGB = $Line.Split(":",2)[1].Trim()
#End of pool info line, add object to table as it's about to be overwritten
$OutTable += $OutObject
}
}
Return $OutTable
}

Nutanix CE 2.0 on ESXi AOS Upgrade Hangs

AOS Upgrade on ESXi from 6.5.2 to 6.5.3.6 hangs. Issue I have tried to upgrade my Nutanix CE 2.0 based on ESXi to a newer AOS version for ...