-
Notifications
You must be signed in to change notification settings - Fork 15
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
Support additional uplink port types in the LogicalInterconnectGroupProvider #225
Comments
I know that oneview-sdk with these enhancements ( HewlettPackard/oneview-sdk-ruby#230 ) needs to be released first but i will preliminary look at it ;) |
Theoretically we can get interconnect module
I can see a few challenges here ... for example these 16Gb Synergy FC switches and their |
Ahhh, I've just realized that API300::Synergy contains
uplink_connections = [
{ bay: 3, port: 'Q1', enclosure_index: 1 },
{ bay: 6, port: 'Q1', enclosure_index: 2 }
] |
hmmm .... I can see how it has been solved in Puppet library, that's actually great and straightforward solution. parsed_uplink_info[:connections].each do |link|
link[:type] ||= nil
link[:enclosure_index] ||= 1
up.add_uplink(link[:bay], link[:port], link[:type], link[:enclosure_index])
end I will try to implement & test this week. |
Scenario/Intent
After SDK issue #216 gets implemented/fixed, we'll need to add the same support for our cookbooks.
Related resource:
Environment Details
Expected Result
Support Q ports, etc., where we need to specify an enclosure_index to calculate the offset value.
Actual Result
Not currently supported
The text was updated successfully, but these errors were encountered: