Created
July 19, 2017 19:07
-
-
Save janegilring/db4712d67e2b4eed154205c91e8aa936 to your computer and use it in GitHub Desktop.
An example for setting up a basic lab environment using Lability
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| $ConfigData = @{ | |
| AllNodes = @( | |
| @{ | |
| NodeName = 'DC1'; | |
| Lability_ProcessorCount = 2; | |
| Lability_SwitchName = 'CORPNET'; | |
| Lability_Media = '2016_x64_Standard_Core_EN_Eval'; | |
| }, | |
| @{ | |
| NodeName = 'APP1'; | |
| Lability_ProcessorCount = 4; | |
| Lability_SwitchName = 'CORPNET'; | |
| Lability_Media = '2016_x64_Standard_EN_Eval'; | |
| } | |
| ) | |
| NonNodeData = @{ | |
| Lability = @{ | |
| Network = @( | |
| @{ Name = 'CORPNET'; Type = 'Internal'; } | |
| ) | |
| } | |
| } | |
| } | |
| Start-LabConfiguration -ConfigurationData $ConfigData |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment