Skip to content

Commit f878e4c

Browse files
committed
Move Budget settings to new BudgetDetails struct
Signed-off-by: Nick Young <[email protected]>
1 parent e68481c commit f878e4c

File tree

9 files changed

+232
-104
lines changed

9 files changed

+232
-104
lines changed

apisx/v1alpha1/xbackendtrafficpolicy_types.go

+29-17
Original file line numberDiff line numberDiff line change
@@ -119,26 +119,12 @@ type BackendTrafficPolicySpec struct {
119119

120120
// RetryConstraint defines the configuration for when to retry a request.
121121
type RetryConstraint struct {
122-
// BudgetPercent defines the maximum percentage of active requests that may
123-
// be made up of retries.
124-
//
125-
// Support: Extended
126-
//
127-
// +optional
128-
// +kubebuilder:default=20
129-
// +kubebuilder:validation:Minimum=0
130-
// +kubebuilder:validation:Maximum=100
131-
BudgetPercent *int `json:"budgetPercent,omitempty"`
132122

133-
// BudgetInterval defines the duration in which requests will be considered
134-
// for calculating the budget for retries.
135-
//
136-
// Support: Extended
123+
// Budget holds the details of the retry budget configuration.
137124
//
138125
// +optional
139-
// +kubebuilder:default="10s"
140-
// +kubebuilder:validation:XValidation:message="budgetInterval can not be greater than one hour or less than one second",rule="!(duration(self) < duration('1s') || duration(self) > duration('1h'))"
141-
BudgetInterval *Duration `json:"budgetInterval,omitempty"`
126+
// +kubebuilder:default={percent: 20, interval: "10s"}
127+
Budget *BudgetDetails `json:"budget,omitempty"`
142128

143129
// MinRetryRate defines the minimum rate of retries that will be allowable
144130
// over a specified duration of time.
@@ -157,3 +143,29 @@ type RetryConstraint struct {
157143
// +kubebuilder:default={count: 10, interval: "1s"}
158144
MinRetryRate *RequestRate `json:"minRetryRate,omitempty"`
159145
}
146+
147+
// BudgetDetails specifies the details of the budget configuration, like
148+
// the percentage of requests in the budget, and the interval between
149+
// checks.
150+
type BudgetDetails struct {
151+
// BudgetPercent defines the maximum percentage of active requests that may
152+
// be made up of retries.
153+
//
154+
// Support: Extended
155+
//
156+
// +optional
157+
// +kubebuilder:default=20
158+
// +kubebuilder:validation:Minimum=0
159+
// +kubebuilder:validation:Maximum=100
160+
Percent *int `json:"percent,omitempty"`
161+
162+
// BudgetInterval defines the duration in which requests will be considered
163+
// for calculating the budget for retries.
164+
//
165+
// Support: Extended
166+
//
167+
// +optional
168+
// +kubebuilder:default="10s"
169+
// +kubebuilder:validation:XValidation:message="budgetInterval can not be greater than one hour or less than one second",rule="!(duration(self) < duration('1s') || duration(self) > duration('1h'))"
170+
Interval *Duration `json:"interval,omitempty"`
171+
}

apisx/v1alpha1/zz_generated.deepcopy.go

+29-9
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

applyconfiguration/apisx/v1alpha1/budgetdetails.go

+52
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

applyconfiguration/apisx/v1alpha1/retryconstraint.go

+6-19
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

applyconfiguration/internal/internal.go

+11-5
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

applyconfiguration/utils.go

+2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

config/crd/experimental/gateway.networking.x-k8s.io_xbackendtrafficpolicies.yaml

+29-22
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pkg/generated/openapi/zz_generated.openapi.go

+32-12
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)