From cddd4e6702f7cd6ad349071a5a679487dbf8ced0 Mon Sep 17 00:00:00 2001 From: Guy Daich Date: Mon, 29 Jan 2024 16:36:34 -0600 Subject: [PATCH] add default to comment --- api/v1alpha1/circuitbreaker_types.go | 1 + 1 file changed, 1 insertion(+) diff --git a/api/v1alpha1/circuitbreaker_types.go b/api/v1alpha1/circuitbreaker_types.go index 52a8ea0de544..33d394446e26 100644 --- a/api/v1alpha1/circuitbreaker_types.go +++ b/api/v1alpha1/circuitbreaker_types.go @@ -32,6 +32,7 @@ type CircuitBreaker struct { MaxParallelRequests *int64 `json:"maxParallelRequests,omitempty"` // The maximum number of requests that Envoy will make over a single connection to the referenced backend defined within a xRoute rule. + // Default: unlimited. // // +kubebuilder:validation:Minimum=0 // +kubebuilder:validation:Maximum=4294967295