1syntax = "proto3"; 2 3package envoy.config.cluster.aggregate.v2alpha; 4 5import "udpa/annotations/migrate.proto"; 6import "udpa/annotations/status.proto"; 7import "validate/validate.proto"; 8 9option java_package = "io.envoyproxy.envoy.config.cluster.aggregate.v2alpha"; 10option java_outer_classname = "ClusterProto"; 11option java_multiple_files = true; 12option go_package = "github.com/envoyproxy/go-control-plane/envoy/config/cluster/aggregate/v2alpha"; 13option (udpa.annotations.file_migrate).move_to_package = "envoy.extensions.clusters.aggregate.v3"; 14option (udpa.annotations.file_status).package_version_status = FROZEN; 15 16// [#protodoc-title: Aggregate cluster configuration] 17 18// Configuration for the aggregate cluster. See the :ref:`architecture overview 19// <arch_overview_aggregate_cluster>` for more information. 20// [#extension: envoy.clusters.aggregate] 21message ClusterConfig { 22 // Load balancing clusters in aggregate cluster. Clusters are prioritized based on the order they 23 // appear in this list. 24 repeated string clusters = 1 [(validate.rules).repeated = {min_items: 1}]; 25} 26