Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit df9c235

Browse files
authored
xds: import v2 version of aggregate.ClusterConfig proto (#7573)
1 parent e65f67d commit df9c235

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed

xds/third_party/envoy/import.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,7 @@ envoy/api/v2/route/route_components.proto
6363
envoy/api/v2/scoped_route.proto
6464
envoy/api/v2/srds.proto
6565
envoy/config/accesslog/v3/accesslog.proto
66+
envoy/config/cluster/aggregate/v2alpha/cluster.proto
6667
envoy/config/cluster/v3/circuit_breaker.proto
6768
envoy/config/cluster/v3/cluster.proto
6869
envoy/config/cluster/v3/filter.proto
Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
syntax = "proto3";
2+
3+
package envoy.config.cluster.aggregate.v2alpha;
4+
5+
import "udpa/annotations/migrate.proto";
6+
import "udpa/annotations/status.proto";
7+
import "validate/validate.proto";
8+
9+
option java_package = "io.envoyproxy.envoy.config.cluster.aggregate.v2alpha";
10+
option java_outer_classname = "ClusterProto";
11+
option java_multiple_files = true;
12+
option (udpa.annotations.file_migrate).move_to_package = "envoy.extensions.clusters.aggregate.v3";
13+
option (udpa.annotations.file_status).package_version_status = FROZEN;
14+
15+
// [#protodoc-title: Aggregate cluster configuration]
16+
17+
// Configuration for the aggregate cluster. See the :ref:`architecture overview
18+
// <arch_overview_aggregate_cluster>` for more information.
19+
// [#extension: envoy.clusters.aggregate]
20+
message ClusterConfig {
21+
// Load balancing clusters in aggregate cluster. Clusters are prioritized based on the order they
22+
// appear in this list.
23+
repeated string clusters = 1 [(validate.rules).repeated = {min_items: 1}];
24+
}

0 commit comments

Comments
 (0)