0.51.2 envoy_override is not applied
See original GitHub issueDescribe the bug envoy_override does not add idle_timeout to a route config In my service mapping:
apiVersion: ambassador/v1
kind: Mapping
name: grpc_service_mapping
grpc: True
prefix: "/dei.grpc.(.+)/(.*)"
prefix_regex: True
rewrite: ""
auto_host_rewrite: True
service: {{ $appName }}
timeout_ms: 86400000
ambassador_id: dei-staging-ambassador
envoy_override:
idle_timeout: 86400s
Here is envoy route config generated:
"match": {
"case_sensitive": true,
"regex": "/dei.grpc.(.+)/(.*)"
},
"route": {
"auto_host_rewrite": true,
"priority": null,
"timeout": "86400.000s",
"weighted_clusters": {
"clusters": [
{
"name": "cluster_grpc_staging_server_dei_9429_dei_grpc_server",
"weight": 100.0
}
]
}
}
},
Expected behavior idle_timeout should be appended to Envoy route
Versions (please complete the following information):
- Ambassador: 0.51.2
- Amazon EKS
- Version ?
Issue Analytics
- State:
- Created 5 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
0.51.2 envoy_override is not applied · Issue #1348 - GitHub
Describe the bug envoy_override does not add idle_timeout to a route config. In my service mapping: ; Expected behavior idle_timeout should be ...
Read more >Override host — envoy 1.25.0-dev-9b42ac documentation
In summary, override host provides a mechanism by which L4/L7 extensions can influence the final results of upstream load balancing. This mechanism can...
Read more >Override Envoy's local app request timeout - Hashicorp Support
This disables the timeout for the local app in Envoy. Your service router will now override the local app request timeout now that...
Read more >Spring: overriding one application.property from command line
If not working with comma, to override some custom properties or spring boot properties in multiple mode, use whitespace instead of comma, like...
Read more >Envoy Filter - Istio
NOTE 3: To apply an EnvoyFilter resource to all workloads (sidecars and ... if overriding is not desired, then the name should be...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Okay. Found it by looking at old MR. Not in any documentation.
Is there another way to set the
idle_timeout
config for envoy?@simenbw I just disabled keep alive since it’s serving static file/pic.