Skip to content

Commit

Permalink
Fix testdate gen
Browse files Browse the repository at this point in the history
Signed-off-by: Guy Daich <[email protected]>
  • Loading branch information
guydc committed Dec 20, 2023
1 parent 0f8530f commit 226bc01
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,8 @@ infraIR:
envoy-gateway/gateway-1:
proxy:
listeners:
- name: envoy-gateway/gateway-1/http
- address: null
name: envoy-gateway/gateway-1/http
ports:
- containerPort: 10080
name: http
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ backendTrafficPolicies:
spec:
circuitBreaker:
maxConnections: 42
maxPendingRequests: 42
maxParallelRequests: 42
maxPendingRequests: 42
targetRef:
group: gateway.networking.k8s.io
kind: HTTPRoute
Expand All @@ -31,8 +31,8 @@ backendTrafficPolicies:
spec:
circuitBreaker:
maxConnections: 2048
maxPendingRequests: 1
maxParallelRequests: 4294967295
maxPendingRequests: 1
targetRef:
group: gateway.networking.k8s.io
kind: Gateway
Expand Down Expand Up @@ -203,7 +203,8 @@ infraIR:
envoy-gateway/gateway-1:
proxy:
listeners:
- name: envoy-gateway/gateway-1/http
- address: null
name: envoy-gateway/gateway-1/http
ports:
- containerPort: 10080
name: http
Expand All @@ -217,7 +218,8 @@ infraIR:
envoy-gateway/gateway-2:
proxy:
listeners:
- name: envoy-gateway/gateway-2/http
- address: null
name: envoy-gateway/gateway-2/http
ports:
- containerPort: 10080
name: http
Expand All @@ -244,6 +246,10 @@ xdsIR:
- backendWeights:
invalid: 0
valid: 0
circuitBreaker:
maxConnections: 2048
maxParallelRequests: 4294967295
maxPendingRequests: 1
destination:
name: grpcroute/default/grpcroute-1/rule/0
settings:
Expand All @@ -255,10 +261,6 @@ xdsIR:
weight: 1
hostname: '*'
name: grpcroute/default/grpcroute-1/rule/0/match/-1/*
circuitBreaker:
maxConnections: 2048
maxPendingRequests: 1
maxParallelRequests: 4294967295
envoy-gateway/gateway-2:
accessLog:
text:
Expand All @@ -274,6 +276,10 @@ xdsIR:
- backendWeights:
invalid: 0
valid: 0
circuitBreaker:
maxConnections: 42
maxParallelRequests: 42
maxPendingRequests: 42
destination:
name: httproute/default/httproute-1/rule/0
settings:
Expand All @@ -289,7 +295,3 @@ xdsIR:
distinct: false
name: ""
prefix: /
circuitBreaker:
maxConnections: 42
maxPendingRequests: 42
maxParallelRequests: 42

0 comments on commit 226bc01

Please sign in to comment.