cluster.proto 1.1 KB

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