Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
429 changes: 429 additions & 0 deletions kubernetes/customresourcedefinitions.gen.yaml

Large diffs are not rendered by default.

224 changes: 122 additions & 102 deletions mesh/v1alpha1/config.pb.go

Large diffs are not rendered by default.

13 changes: 12 additions & 1 deletion mesh/v1alpha1/config.proto
Original file line number Diff line number Diff line change
Expand Up @@ -345,10 +345,21 @@ message MeshConfig {

// Locality based load balancing distribution or failover settings.
// If unspecified, locality based load balancing will be enabled by default.
// However, this requires outlierDetection to actually take effect for a particular
// Only one of locality_lb_setting and zone_aware_lb_setting should be enabled;
// if both are set, zone_aware_lb_setting takes precedence and this setting is ignored.
// Failover settings, require outlierDetection to actually take effect for a particular

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
// Failover settings, require outlierDetection to actually take effect for a particular
// Failover settings require outlierDetection to actually take effect for a particular

// service, see https://istio.io/latest/docs/tasks/traffic-management/locality-load-balancing/failover/
istio.networking.v1alpha3.LocalityLoadBalancerSetting locality_lb_setting = 35;

// Zone Aware based load balancing settings.
// Only one of locality_lb_setting and zone_aware_lb_setting should be enabled,
// if unspecified zone_aware_lb_setting is disabled by default.
// If both are set, zone_aware_lb_setting takes precedence over locality_lb_setting.
// Additionally, Zone Aware LB is only supported in Sidecar mode and only takes effect
// on proxies configured with `ISTIO_META_ENABLE_SELF_DISCOVERY=true` (via `proxyMetadata`); see
// [ZoneAwareLoadBalancerSetting](https://istio.io/latest/docs/reference/config/networking/destination-rule/#ZoneAwareLoadBalancerSetting).
istio.networking.v1alpha3.ZoneAwareLoadBalancerSetting zone_aware_lb_setting = 73;

// Configures DNS refresh rate for Envoy clusters of type `STRICT_DNS`
// Default refresh rate is `60s`.
google.protobuf.Duration dns_refresh_rate = 36;
Expand Down
19 changes: 18 additions & 1 deletion mesh/v1alpha1/istio.mesh.v1alpha1.pb.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

99 changes: 99 additions & 0 deletions networking/v1/destination_rule_alias.gen.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading