cluster.proto 1.1 KB

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