Skip to content

Commit

Permalink
Fix(eos_designs): management interface for 750 platforms (#3558)
Browse files Browse the repository at this point in the history
Co-authored-by: Claus Holbech <[email protected]>
Co-authored-by: Carl Buchmann <[email protected]>
  • Loading branch information
3 people authored Feb 2, 2024
1 parent 35f3929 commit 1725036
Show file tree
Hide file tree
Showing 8 changed files with 60 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,16 @@
"feature_support": {"queue_monitor_length_notify": False, "poe": True},
},
{
"platforms": ["750", "755", "758", "720DP", "722XP", "710P"],
"platforms": ["750", "755", "758"],
"management_interface": "Management0",
"reload_delay": {
"mlag": 300,
"non_mlag": 330,
},
"feature_support": {"queue_monitor_length_notify": False, "poe": True},
},
{
"platforms": ["720DP", "722XP", "710P"],
"reload_delay": {
"mlag": 300,
"non_mlag": 330,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -120,10 +120,18 @@
- feature_support:
poe: true
queue_monitor_length_notify: false
management_interface: Management0
platforms:
- '750'
- '755'
- '758'
reload_delay:
mlag: 300
non_mlag: 330
- feature_support:
poe: true
queue_monitor_length_notify: false
platforms:
- 720DP
- 722XP
- 710P
Expand Down

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,8 @@ $defs:
table: node-type-common-configuration
description: Arista platform family.
type: str
convert_types:
- int
mac_address:
documentation_options:
table: node-type-common-configuration
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ keys:
type: list
items:
type: str
convert_types:
- int
trident_forwarding_table_partition:
type: str
description: Only applied when evpn_multicast is true.
Expand Down Expand Up @@ -117,6 +119,14 @@ keys:
- '750'
- '755'
- '758'
management_interface: Management0
feature_support:
poe: true
queue_monitor_length_notify: false
reload_delay:
mlag: 300
non_mlag: 330
- platforms:
- 720DP
- 722XP
- 710P
Expand All @@ -126,7 +136,6 @@ keys:
reload_delay:
mlag: 300
non_mlag: 330

- platforms:
- 7280R
- 7280R2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ keys:
keys:
platform:
type: str
convert_types:
- int
speeds:
type: list
primary_key: speed
Expand Down

0 comments on commit 1725036

Please sign in to comment.