-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sonic-cfggen supports hwsku parameter (#1631)
*Note*: tuned test data during cherry-pick
- Loading branch information
1 parent
f734033
commit 532953e
Showing
6 changed files
with
172 additions
and
19 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
{ | ||
"DEVICE_METADATA": {{ DEVICE_METADATA | tojson }}, | ||
"PORT": {{ PORT | tojson }}, | ||
"VLAN": { | ||
"Vlan1000": { | ||
"vlanid": "1000" | ||
} | ||
}, | ||
{% set ns = {'firstPrinted': False} -%} | ||
"VLAN_MEMBER": { | ||
{%- for port in PORT -%} | ||
{%- if ns.firstPrinted %},{% endif %} | ||
|
||
"Vlan1000|{{ port }}": { | ||
"tagging_mode": "untagged" | ||
} | ||
{%- if ns.update({'firstPrinted': True}) %}{% endif -%} | ||
{%- endfor %} | ||
|
||
} | ||
} |
This file contains 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
This file contains 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
107 changes: 107 additions & 0 deletions
107
src/sonic-config-engine/tests/sample_output/l2switch.json
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,107 @@ | ||
{ | ||
"DEVICE_METADATA": {"localhost": {"hwsku": "Mellanox-SN2700"}}, | ||
"PORT": {"Ethernet0": {"alias": "fortyGigE0/0", "lanes": "29,30,31,32"}, "Ethernet100": {"alias": "fortyGigE0/100", "lanes": "125,126,127,128"}, "Ethernet104": {"alias": "fortyGigE0/104", "lanes": "85,86,87,88"}, "Ethernet108": {"alias": "fortyGigE0/108", "lanes": "81,82,83,84"}, "Ethernet112": {"alias": "fortyGigE0/112", "lanes": "89,90,91,92"}, "Ethernet116": {"alias": "fortyGigE0/116", "lanes": "93,94,95,96"}, "Ethernet12": {"alias": "fortyGigE0/12", "lanes": "33,34,35,36"}, "Ethernet120": {"alias": "fortyGigE0/120", "lanes": "97,98,99,100"}, "Ethernet124": {"alias": "fortyGigE0/124", "lanes": "101,102,103,104"}, "Ethernet16": {"alias": "fortyGigE0/16", "lanes": "41,42,43,44"}, "Ethernet20": {"alias": "fortyGigE0/20", "lanes": "45,46,47,48"}, "Ethernet24": {"alias": "fortyGigE0/24", "lanes": "5,6,7,8"}, "Ethernet28": {"alias": "fortyGigE0/28", "lanes": "1,2,3,4"}, "Ethernet32": {"alias": "fortyGigE0/32", "lanes": "9,10,11,12"}, "Ethernet36": {"alias": "fortyGigE0/36", "lanes": "13,14,15,16"}, "Ethernet4": {"alias": "fortyGigE0/4", "lanes": "25,26,27,28"}, "Ethernet40": {"alias": "fortyGigE0/40", "lanes": "21,22,23,24"}, "Ethernet44": {"alias": "fortyGigE0/44", "lanes": "17,18,19,20"}, "Ethernet48": {"alias": "fortyGigE0/48", "lanes": "49,50,51,52"}, "Ethernet52": {"alias": "fortyGigE0/52", "lanes": "53,54,55,56"}, "Ethernet56": {"alias": "fortyGigE0/56", "lanes": "61,62,63,64"}, "Ethernet60": {"alias": "fortyGigE0/60", "lanes": "57,58,59,60"}, "Ethernet64": {"alias": "fortyGigE0/64", "lanes": "65,66,67,68"}, "Ethernet68": {"alias": "fortyGigE0/68", "lanes": "69,70,71,72"}, "Ethernet72": {"alias": "fortyGigE0/72", "lanes": "77,78,79,80"}, "Ethernet76": {"alias": "fortyGigE0/76", "lanes": "73,74,75,76"}, "Ethernet8": {"alias": "fortyGigE0/8", "lanes": "37,38,39,40"}, "Ethernet80": {"alias": "fortyGigE0/80", "lanes": "105,106,107,108"}, "Ethernet84": {"alias": "fortyGigE0/84", "lanes": "109,110,111,112"}, "Ethernet88": {"alias": "fortyGigE0/88", "lanes": "117,118,119,120"}, "Ethernet92": {"alias": "fortyGigE0/92", "lanes": "113,114,115,116"}, "Ethernet96": {"alias": "fortyGigE0/96", "lanes": "121,122,123,124"}}, | ||
"VLAN": { | ||
"Vlan1000": { | ||
"vlanid": "1000" | ||
} | ||
}, | ||
"VLAN_MEMBER": { | ||
"Vlan1000|Ethernet8": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet0": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet4": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet108": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet100": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet104": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet68": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet96": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet124": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet92": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet120": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet52": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet56": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet76": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet72": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet64": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet32": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet16": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet36": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet12": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet88": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet116": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet80": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet112": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet84": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet48": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet44": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet40": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet28": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet60": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet20": { | ||
"tagging_mode": "untagged" | ||
}, | ||
"Vlan1000|Ethernet24": { | ||
"tagging_mode": "untagged" | ||
} | ||
} | ||
} |
This file contains 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