-
Notifications
You must be signed in to change notification settings - Fork 67
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
xVMSwitch - Add support for EmbeddedTeaming #95
Comments
@BrianFarnhill There is a resource from @rchaganti that includes Hyper-V SET support. I thought that was going to be merged in at some point, but it's probably worth talking to Ravi to ensure that efforts aren't wasted/duplicated?! |
@BrianFarnhill - also keen to have this feature and had started using your #96 PR xVMSwitch NewSET {
Name = "NewSET"
Type = "External"
EnableEmbeddedTeaming = $true
AllowManagementOS = $false
NetAdapterName = "Public1", "Public2"
Ensure = "Present"
} #newSET However, now when I use xVMSwitch to build a single adapter switch - it still works - but I'm getting errors on the local device when running Get-DSCConfiguration.
Relevant config: xVMSwitch SVirtualSwitch {
Name = "NotTeamVSwitch"
Type = 'External'
EnableEmbeddedTeaming = $false
AllowManagementOS = $true
NetAdapterName = 'ServiceNet'
Ensure = 'Present'
} #sVirtualSw Error output: PS C:\Windows\system32> Get-DscConfiguration
Get-DscConfiguration : GetConfiguration did not succeed.
At line:1 char:1
+ Get-DscConfiguration
+ ~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (MSFT_DSCLocalConfigurationManager:root/Microsoft/...gurationManager) [Get-DscConfiguration], CimException
+ FullyQualifiedErrorId : MI RESULT 1,Get-DscConfiguration DSC Logs:
|
@techthoughts2 Thanks for the feedback - I think I know what's happening here. I'll make a fix and do some testing then update this branch. Will post when I have time to make the update. |
@BrianFarnhill - I tested again today with all the recent changes to #96 (nice work btw) and just wanted to give you a heads up that the Get-DSCConfiguration error with single adapter switch error is still present. |
@BrianFarnhill I'll address the fix for this in the review. Thanks @techthoughts2 for reporting |
Add support for embedded teaming Fixes #95
I'm new to the party here so forgive anything that sounds way off base here :)
Basically I'm looking at deploying Hyper-V on a server 2016 cluster and want to take advantage of the embedded teaming that got added there. Having a quick look over the resource it seems like all that needs to be done is the following:
Assuming I've interpreted that right, I'll make a start on the changes for this one now, but if anyone has any input or thoughts on this one let me know.
The text was updated successfully, but these errors were encountered: