-
Notifications
You must be signed in to change notification settings - Fork 333
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: intercp communication with catalog (#5445)
Signed-off-by: Jakub Dyszkiewicz <[email protected]>
- Loading branch information
1 parent
beeb0b5
commit 18150a5
Showing
54 changed files
with
2,311 additions
and
6 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,16 @@ | ||
syntax = "proto3"; | ||
|
||
package kuma.system.v1alpha1; | ||
|
||
option go_package = "github.com/kumahq/kuma/api/system/v1alpha1"; | ||
|
||
message PingRequest { | ||
string instance_id = 1; | ||
string address = 2; | ||
uint32 inter_cp_port = 3; | ||
bool ready = 4; | ||
} | ||
|
||
message PingResponse { bool leader = 1; } | ||
|
||
service InterCpPingService { rpc Ping(PingRequest) returns (PingResponse); } |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
Oops, something went wrong.