xds: import envoy proto envoy/config/cluster/aggregate/v2alpha/cluster.proto (#7551)

This commit is contained in:
Chengyuan Zhang 2020-10-24 02:27:06 -07:00 committed by GitHub
parent 40191b2f81
commit a26f8e00a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View File

@ -80,6 +80,7 @@ envoy/config/core/v3/protocol.proto
envoy/config/core/v3/proxy_protocol.proto
envoy/config/core/v3/socket_option.proto
envoy/config/core/v3/substitution_format_string.proto
envoy/config/cluster/aggregate/v2alpha/cluster.proto
envoy/config/endpoint/v3/endpoint.proto
envoy/config/endpoint/v3/endpoint_components.proto
envoy/config/endpoint/v3/load_report.proto

View File

@ -0,0 +1,24 @@
syntax = "proto3";
package envoy.config.cluster.aggregate.v2alpha;
import "udpa/annotations/migrate.proto";
import "udpa/annotations/status.proto";
import "validate/validate.proto";
option java_package = "io.envoyproxy.envoy.config.cluster.aggregate.v2alpha";
option java_outer_classname = "ClusterProto";
option java_multiple_files = true;
option (udpa.annotations.file_migrate).move_to_package = "envoy.extensions.clusters.aggregate.v3";
option (udpa.annotations.file_status).package_version_status = FROZEN;
// [#protodoc-title: Aggregate cluster configuration]
// Configuration for the aggregate cluster. See the :ref:`architecture overview
// <arch_overview_aggregate_cluster>` for more information.
// [#extension: envoy.clusters.aggregate]
message ClusterConfig {
// Load balancing clusters in aggregate cluster. Clusters are prioritized based on the order they
// appear in this list.
repeated string clusters = 1 [(validate.rules).repeated = {min_items: 1}];
}