Skip to content

Commit 773c48b

Browse files
committed
fabric-gateway: update CRD to support zero ratelimit for custom routes
1 parent 778a246 commit 773c48b

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

cluster/manifests/fabric-gateway/fabricgateway_crd.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -174,9 +174,10 @@ spec:
174174
properties:
175175
default-rate:
176176
description: |-
177-
Non user specific value to apply to the route. If a client makes more requests than this
177+
Non-user specific value to apply to the route. If a client makes more requests than this
178178
value within the defined period, then they will start getting HTTP 429 responses.
179-
minimum: 1
179+
Setting `default-rate` to 0 will cause all requests matching the rate limit configuration to be denied.
180+
minimum: 0
180181
type: integer
181182
period:
182183
description: |-
@@ -330,9 +331,10 @@ spec:
330331
properties:
331332
default-rate:
332333
description: |-
333-
Non user specific value to apply to the route. If a client makes more requests than this
334+
Non-user specific value to apply to the route. If a client makes more requests than this
334335
value within the defined period, then they will start getting HTTP 429 responses.
335-
minimum: 1
336+
Setting `default-rate` to 0 will cause all requests matching the rate limit configuration to be denied.
337+
minimum: 0
336338
type: integer
337339
period:
338340
description: |-

0 commit comments

Comments
 (0)