Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,7 @@ spec:
name: providedBackend
port: 8000
weight: 1
name: rule-1
matches:
- path:
type: PathPrefix
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -446,6 +446,7 @@ httpRoutes:
- path:
type: PathPrefix
value: /
name: rule-1
status:
parents:
- conditions:
Expand Down Expand Up @@ -787,6 +788,14 @@ xds:
loadBalancingWeight: 1
locality:
region: httproute/default/backend/rule/0/backend/0
metadata:
filterMetadata:
envoy-gateway:
resources:
- kind: Service
name: providedBackend
namespace: default
sectionName: "8000"
- endpointConfig:
'@type': type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment
clusterName: grpcroute/default/backend/rule/0
Expand All @@ -801,6 +810,14 @@ xds:
loadBalancingWeight: 1
locality:
region: grpcroute/default/backend/rule/0/backend/0
metadata:
filterMetadata:
envoy-gateway:
resources:
- kind: Service
name: providedBackend
namespace: default
sectionName: "9000"
- endpointConfig:
'@type': type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment
clusterName: tcproute/default/backend/rule/-1
Expand All @@ -815,6 +832,14 @@ xds:
loadBalancingWeight: 1
locality:
region: tcproute/default/backend/rule/-1/backend/0
metadata:
filterMetadata:
envoy-gateway:
resources:
- kind: Service
name: backend
namespace: default
sectionName: "3000"
- endpointConfig:
'@type': type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment
clusterName: tlsroute/default/backend/rule/-1
Expand All @@ -829,6 +854,14 @@ xds:
loadBalancingWeight: 1
locality:
region: tlsroute/default/backend/rule/-1/backend/0
metadata:
filterMetadata:
envoy-gateway:
resources:
- kind: Service
name: backend
namespace: default
sectionName: "3000"
- endpointConfig:
'@type': type.googleapis.com/envoy.config.endpoint.v3.ClusterLoadAssignment
clusterName: udproute/default/backend/rule/-1
Expand All @@ -843,6 +876,14 @@ xds:
loadBalancingWeight: 1
locality:
region: udproute/default/backend/rule/-1/backend/0
metadata:
filterMetadata:
envoy-gateway:
resources:
- kind: Service
name: backend
namespace: default
sectionName: "3000"
- '@type': type.googleapis.com/envoy.admin.v3.ClustersConfigDump
dynamicActiveClusters:
- cluster:
Expand All @@ -861,6 +902,14 @@ xds:
serviceName: httproute/default/backend/rule/0
ignoreHealthOnHostRemoval: true
lbPolicy: LEAST_REQUEST
metadata:
filterMetadata:
envoy-gateway:
resources:
- kind: HTTPRoute
name: backend
namespace: default
sectionName: rule-1
name: httproute/default/backend/rule/0
perConnectionBufferLimitBytes: 32768
type: EDS
Expand All @@ -880,6 +929,13 @@ xds:
serviceName: grpcroute/default/backend/rule/0
ignoreHealthOnHostRemoval: true
lbPolicy: LEAST_REQUEST
metadata:
filterMetadata:
envoy-gateway:
resources:
- kind: GRPCRoute
name: backend
namespace: default
name: grpcroute/default/backend/rule/0
perConnectionBufferLimitBytes: 32768
type: EDS
Expand All @@ -906,6 +962,13 @@ xds:
serviceName: tcproute/default/backend/rule/-1
ignoreHealthOnHostRemoval: true
lbPolicy: LEAST_REQUEST
metadata:
filterMetadata:
envoy-gateway:
resources:
- kind: TCPRoute
name: backend
namespace: default
name: tcproute/default/backend/rule/-1
perConnectionBufferLimitBytes: 32768
type: EDS
Expand All @@ -925,6 +988,13 @@ xds:
serviceName: tlsroute/default/backend/rule/-1
ignoreHealthOnHostRemoval: true
lbPolicy: LEAST_REQUEST
metadata:
filterMetadata:
envoy-gateway:
resources:
- kind: TLSRoute
name: backend
namespace: default
name: tlsroute/default/backend/rule/-1
perConnectionBufferLimitBytes: 32768
type: EDS
Expand All @@ -944,6 +1014,13 @@ xds:
serviceName: udproute/default/backend/rule/-1
ignoreHealthOnHostRemoval: true
lbPolicy: LEAST_REQUEST
metadata:
filterMetadata:
envoy-gateway:
resources:
- kind: UDPRoute
name: backend
namespace: default
name: udproute/default/backend/rule/-1
perConnectionBufferLimitBytes: 32768
type: EDS
Expand Down Expand Up @@ -1490,6 +1567,7 @@ xds:
- kind: HTTPRoute
name: backend
namespace: default
sectionName: rule-1
name: httproute/default/backend/rule/0/match/0/www_example_com
route:
cluster: httproute/default/backend/rule/0
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,6 +117,13 @@ xds:
serviceName: httproute/envoy-gateway-system/backend/rule/0
ignoreHealthOnHostRemoval: true
lbPolicy: LEAST_REQUEST
metadata:
filterMetadata:
envoy-gateway:
resources:
- kind: HTTPRoute
name: backend
namespace: envoy-gateway-system
name: httproute/envoy-gateway-system/backend/rule/0
perConnectionBufferLimitBytes: 32768
type: EDS
Original file line number Diff line number Diff line change
Expand Up @@ -358,6 +358,20 @@
"loadBalancingWeight": 1,
"locality": {
"region": "httproute/default/backend/rule/0/backend/0"
},
"metadata": {
"filterMetadata": {
"envoy-gateway": {
"resources": [
{
"kind": "Service",
"name": "backend",
"namespace": "default",
"sectionName": "3000"
}
]
}
}
}
}
]
Expand Down Expand Up @@ -385,6 +399,20 @@
"loadBalancingWeight": 1,
"locality": {
"region": "grpcroute/default/backend/rule/0/backend/0"
},
"metadata": {
"filterMetadata": {
"envoy-gateway": {
"resources": [
{
"kind": "Service",
"name": "backend",
"namespace": "default",
"sectionName": "9000"
}
]
}
}
}
}
]
Expand Down Expand Up @@ -412,6 +440,20 @@
"loadBalancingWeight": 1,
"locality": {
"region": "tcproute/default/backend/rule/-1/backend/0"
},
"metadata": {
"filterMetadata": {
"envoy-gateway": {
"resources": [
{
"kind": "Service",
"name": "backend",
"namespace": "default",
"sectionName": "3000"
}
]
}
}
}
}
]
Expand Down Expand Up @@ -439,6 +481,20 @@
"loadBalancingWeight": 1,
"locality": {
"region": "tlsroute/default/backend/rule/-1/backend/0"
},
"metadata": {
"filterMetadata": {
"envoy-gateway": {
"resources": [
{
"kind": "Service",
"name": "backend",
"namespace": "default",
"sectionName": "3000"
}
]
}
}
}
}
]
Expand Down Expand Up @@ -466,6 +522,20 @@
"loadBalancingWeight": 1,
"locality": {
"region": "udproute/default/backend/rule/-1/backend/0"
},
"metadata": {
"filterMetadata": {
"envoy-gateway": {
"resources": [
{
"kind": "Service",
"name": "backend",
"namespace": "default",
"sectionName": "3000"
}
]
}
}
}
}
]
Expand Down Expand Up @@ -500,6 +570,19 @@
},
"ignoreHealthOnHostRemoval": true,
"lbPolicy": "LEAST_REQUEST",
"metadata": {
"filterMetadata": {
"envoy-gateway": {
"resources": [
{
"kind": "HTTPRoute",
"name": "backend",
"namespace": "default"
}
]
}
}
},
"name": "httproute/default/backend/rule/0",
"perConnectionBufferLimitBytes": 32768,
"type": "EDS"
Expand Down Expand Up @@ -529,6 +612,19 @@
},
"ignoreHealthOnHostRemoval": true,
"lbPolicy": "LEAST_REQUEST",
"metadata": {
"filterMetadata": {
"envoy-gateway": {
"resources": [
{
"kind": "GRPCRoute",
"name": "backend",
"namespace": "default"
}
]
}
}
},
"name": "grpcroute/default/backend/rule/0",
"perConnectionBufferLimitBytes": 32768,
"type": "EDS",
Expand Down Expand Up @@ -569,6 +665,19 @@
},
"ignoreHealthOnHostRemoval": true,
"lbPolicy": "LEAST_REQUEST",
"metadata": {
"filterMetadata": {
"envoy-gateway": {
"resources": [
{
"kind": "TCPRoute",
"name": "backend",
"namespace": "default"
}
]
}
}
},
"name": "tcproute/default/backend/rule/-1",
"perConnectionBufferLimitBytes": 32768,
"type": "EDS"
Expand Down Expand Up @@ -598,6 +707,19 @@
},
"ignoreHealthOnHostRemoval": true,
"lbPolicy": "LEAST_REQUEST",
"metadata": {
"filterMetadata": {
"envoy-gateway": {
"resources": [
{
"kind": "TLSRoute",
"name": "backend",
"namespace": "default"
}
]
}
}
},
"name": "tlsroute/default/backend/rule/-1",
"perConnectionBufferLimitBytes": 32768,
"type": "EDS"
Expand Down Expand Up @@ -627,6 +749,19 @@
},
"ignoreHealthOnHostRemoval": true,
"lbPolicy": "LEAST_REQUEST",
"metadata": {
"filterMetadata": {
"envoy-gateway": {
"resources": [
{
"kind": "UDPRoute",
"name": "backend",
"namespace": "default"
}
]
}
}
},
"name": "udproute/default/backend/rule/-1",
"perConnectionBufferLimitBytes": 32768,
"type": "EDS"
Expand Down
Loading