-
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.
fix k8s by adding new field in dataplane
Signed-off-by: Lukasz Dziedziak <[email protected]>
- Loading branch information
Showing
84 changed files
with
1,130 additions
and
490 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
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
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,19 @@ | ||
syntax = "proto3"; | ||
|
||
package kuma.mesh.v1alpha1; | ||
|
||
option go_package = "github.com/kumahq/kuma/api/mesh/v1alpha1"; | ||
|
||
message EnvoyConfiguration { | ||
enum XdsTransportProtocolVariant { | ||
// This value defines default control-plane variant. | ||
DEFAULT = 0; | ||
// Enables incremental xDS between control-plane and the Envoy. | ||
DELTA_GRPC = 1; | ||
// Enables state of the world xDS between control-plane and the Envoy. | ||
GRPC = 2; | ||
} | ||
// xDSTransportProtocol provides information about protocol used for | ||
// configuration exchange between control-plane and Envoy sidecar. | ||
XdsTransportProtocolVariant xds_transport_protocol_variant = 1; | ||
} |
Oops, something went wrong.