diff --git a/networking/v1alpha3/destination_rule.pb.go b/networking/v1alpha3/destination_rule.pb.go index 520984a2e0..e7cfc180dc 100644 --- a/networking/v1alpha3/destination_rule.pb.go +++ b/networking/v1alpha3/destination_rule.pb.go @@ -2412,6 +2412,10 @@ type ConnectionPoolSettings_HTTPSettings struct { MaxConcurrentStreams int32 `protobuf:"varint,8,opt,name=max_concurrent_streams,json=maxConcurrentStreams,proto3" json:"max_concurrent_streams,omitempty"` // The amount of concurrent retries allowed in the case of failure, a // percentage of the active requests. + // + // NOTE: Including a retry budget requires a retry policy to exist within + // the [VirtualService](https://istio.io/latest/docs/reference/config/networking/virtual-service/#HTTPRetry) resource + // routing to this destination, in order for failed requests to be retried. RetryBudget *RetryBudget `protobuf:"bytes,9,opt,name=retry_budget,json=retryBudget,proto3" json:"retry_budget,omitempty"` } diff --git a/networking/v1alpha3/destination_rule.pb.html b/networking/v1alpha3/destination_rule.pb.html index 77bb849be7..ea192a4bf8 100644 --- a/networking/v1alpha3/destination_rule.pb.html +++ b/networking/v1alpha3/destination_rule.pb.html @@ -1718,6 +1718,9 @@

ConnectionPoolSettings.HTTPSettings

The amount of concurrent retries allowed in the case of failure, a percentage of the active requests.

+

NOTE: Including a retry budget requires a retry policy to exist within +the VirtualService resource +routing to this destination, in order for failed requests to be retried.

diff --git a/networking/v1alpha3/destination_rule.proto b/networking/v1alpha3/destination_rule.proto index 31e472cb6a..e8f7de1716 100644 --- a/networking/v1alpha3/destination_rule.proto +++ b/networking/v1alpha3/destination_rule.proto @@ -647,6 +647,10 @@ message ConnectionPoolSettings { // The amount of concurrent retries allowed in the case of failure, a // percentage of the active requests. + // + // NOTE: Including a retry budget requires a retry policy to exist within + // the [VirtualService](https://istio.io/latest/docs/reference/config/networking/virtual-service/#HTTPRetry) resource + // routing to this destination, in order for failed requests to be retried. RetryBudget retry_budget = 9; };