-
Notifications
You must be signed in to change notification settings - Fork 20
Align with new HLD schema #20
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
Merged
theasianpianist
merged 17 commits into
sonic-net:master
from
theasianpianist:route-group
Aug 10, 2024
Merged
Changes from all commits
Commits
Show all changes
17 commits
Select commit
Hold shift + click to select a range
8f7aaef
add route group table
theasianpianist 16ca9f1
add PA validation table
theasianpianist daa54b6
add new message types to unittest
theasianpianist ecec7fb
Merge branch 'master' into route-group
theasianpianist 8b3de2d
update API to match new HLD schema
theasianpianist 597c4b8
Merge branch 'route-group' of github.com:theasianpianist/sonic-dash-a…
theasianpianist 747425a
Keep pl_sip_encoding
theasianpianist 76ab87a
add newline to EOF
theasianpianist 722b6c2
Rename action_type to routing type
theasianpianist 6e9ad22
non-breaking route metering update
theasianpianist 2f58861
add icmp redirection
theasianpianist ab46204
EOF newline
theasianpianist 95fa234
avoid breaking change
theasianpianist 3260f6a
update unit tests
theasianpianist 2721493
deprecate privatelinknsg routing type
theasianpianist 0df30ee
Merge branch 'master' of github.com:sonic-net/sonic-dash-api into rou…
theasianpianist 7cd1105
deprecate pl_sip_encoding
theasianpianist File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
syntax = "proto3"; | ||
|
||
package dash.eni_route; | ||
|
||
message EniRoute { | ||
// Group ID in DASH_ROUTE_GROUP_TABLE | ||
string group_id = 1; | ||
} | ||
|
||
message EniRouteKey { | ||
string eni = 1; | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
syntax = "proto3"; | ||
|
||
package dash.pa_validation; | ||
|
||
import "types.proto"; | ||
|
||
message PaValidation { | ||
repeated types.IpAddress addresses = 1; | ||
} | ||
|
||
message PaValidationKey { | ||
uint32 vni = 1; | ||
} |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
syntax = "proto3"; | ||
|
||
package dash.route_group; | ||
|
||
message RouteGroup { | ||
optional string guid = 1; | ||
string version = 2; | ||
} | ||
|
||
message RouteGroupKey { | ||
string group_id = 1; | ||
} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
syntax = "proto3"; | ||
|
||
package dash.tunnel; | ||
|
||
import "route_type.proto"; | ||
import "types.proto"; | ||
|
||
message Tunnel { | ||
repeated types.IpAddress endpoints = 1; | ||
route_type.EncapType encap_type = 2; | ||
uint32 vni = 3; | ||
optional uint32 metering_class_or = 4; | ||
} | ||
|
||
// ENI Inbound route table with VNI and optional SRC PA prefix | ||
message TunnelKey { | ||
string tunnel_name = 1; | ||
}; |
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.