Tests/VM/Memory-Reservation.Vester.ps1
# Test file for the Vester module - https://github.com/WahlNetwork/Vester # Called via Invoke-Pester VesterTemplate.Tests.ps1 # Test title, e.g. 'DNS Servers' $Title = 'Memory Reservation' # Test description: How New-VesterConfig explains this value to the user $Description = 'Specifies a Memory reservation which makes sure the VM always has the specified amount of RAM reserved' # The config entry stating the desired values $Desired = $cfg.vm.memoryreservation # The test value's data type, to help with conversion: bool/string/int $Type = 'int' # The command(s) to pull the actual value for comparison # $Object will scope to the folder this test is in (Cluster, Host, etc.) # * Note * - In order to specify a reservation: a limit must be set, or unlimited must be checked [ScriptBlock]$Actual = { [int]$Object.ExtensionData.Config.MemoryAllocation.Reservation } # The command(s) to match the environment to the config # Use $Object to help filter, and $Desired to set the correct value [ScriptBlock]$Fix = { $Object | Get-VMResourceConfiguration | Set-VMResourceConfiguration -MemReservationMB $Desired } |