-
Notifications
You must be signed in to change notification settings - Fork 273
Split base API package into sub-packages #421
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
Merged
Changes from 9 commits
Commits
Show all changes
55 commits
Select commit
Hold shift + click to select a range
2c4ba98
shuffle files and create discovery/cluster packages
kyessenov 5f7b322
shuffle files and create discovery/cluster packages
kyessenov 7861bba
split cluster.proto
kyessenov f4a9e8d
listener and route
kyessenov 75703d1
move bootstrap
kyessenov 0e9e75a
split ads
kyessenov 51892ee
proto packages
kyessenov a1b9ea9
format
kyessenov 6026989
add go_package annotations
kyessenov 7ab2a90
move package to envoy/api/v2
kyessenov 8dcf677
fix ci
kyessenov a83ba75
move hds.proto to discovery
kyessenov 958c99f
fix docs
kyessenov 8981995
fix format
kyessenov ee86b83
package monitoring
kyessenov cce8c8d
merge conflict
kyessenov 587b89a
fix checks
kyessenov 2d1555f
package ratelimit
kyessenov bb131ea
package load_stats
kyessenov 88433d8
move discovery and load_stats
kyessenov dff8d27
move external_auth
kyessenov 16c9cc5
add accesslog service
kyessenov 5a8b24e
add ratelimit
kyessenov efbe8e1
format
kyessenov f0fe938
fix go_package
kyessenov 09b9715
fix tests
kyessenov a48a782
move bootstrap out of core
kyessenov 970da79
fix docs
kyessenov 523b1ae
merge conflict
kyessenov b2b7e8f
add trace and metrics services
kyessenov 2ffa221
fix docs
kyessenov 334a0b9
Merge remote-tracking branch 'upstream/master' into packages
kyessenov 9d2823c
make docs better
kyessenov 8beb485
merge conflict
kyessenov 994235c
add dummy messages
kyessenov 36ebf6a
fix format
kyessenov 65e15e6
fix docs
kyessenov de8df65
fix format
kyessenov eeeb8c4
Merge remote-tracking branch 'upstream/master' into packages
kyessenov 5e4e4f2
Merge remote-tracking branch 'upstream/master' into packages
kyessenov 7a9d4d0
move bootstrap
kyessenov 41d75c5
stats config
kyessenov b477d99
accesslog config
kyessenov 1ee8679
add ratelimit config
kyessenov dc5e55f
missing files
kyessenov 2d30be2
trace config
kyessenov 8163206
fix imports
kyessenov cd734a5
fix format
kyessenov a1bf2ad
fix docs
kyessenov f0106d3
create endpoint package
kyessenov fff0ab5
fix format
kyessenov b649d10
add github bug reference
kyessenov 43943e6
Merge remote-tracking branch 'upstream/master' into packages
kyessenov d826004
merge fix
kyessenov bd258d0
merge fix
kyessenov 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
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,35 @@ | ||
| load("//bazel:api_build_system.bzl", "api_proto_library", "api_go_proto_library") | ||
|
|
||
| licenses(["notice"]) # Apache 2 | ||
|
|
||
| api_proto_library( | ||
| name = "bootstrap", | ||
| srcs = ["bootstrap.proto"], | ||
| deps = [ | ||
| "//api:address", | ||
| "//api:base", | ||
| "//api:config_source", | ||
| "//api:grpc_service", | ||
| "//api:stats", | ||
| "//api:trace", | ||
| "//api/cert", | ||
| "//api/cluster:cluster_def", | ||
| "//api/listener", | ||
| ], | ||
| ) | ||
|
|
||
| api_go_proto_library( | ||
| name = "bootstrap", | ||
| proto = ":bootstrap", | ||
| deps = [ | ||
| "//api:address_go_proto", | ||
| "//api:base_go_proto", | ||
| "//api:config_source_go_proto", | ||
| "//api:grpc_service_go_proto", | ||
| "//api:stats_go_proto", | ||
| "//api:trace_go_proto", | ||
| "//api/cert:cert_go_proto", | ||
| "//api/cluster:cluster_def_go_proto", | ||
| "//api/listener:listener_go_proto", | ||
| ], | ||
| ) |
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
why is this at top level?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Go rules? I don't know why we have duplicate go/grpc rules throughout, seems to be an issue with go_rules.