Helm Changes
- Fix helm chart to honor
.Values.settings.replaceInvalidRoutes
value. This change makes the default invalid route behavior match what's documented (disabled by default). To enable again, set.Values.settings.replaceInvalidRoutes=true
(#3619) - Remove duplicate helm values that are no longer needed to keep hook-created values in helm releases. (#3498)
New Features
- With each release, we will additionally be publishing an alternate set of docker containers (tagged as usual but with the "-extended" suffix) that have some additional dependencies built in (e.g.,
curl
for debugging). You can deploy these images by setting the helm valueglobal.image.extended=true
. (#3399) - Expose the max_connection_duration and max_stream_duration settings via the Gloo API. See https://www.envoyproxy.io/docs/envoy/latest/api-v3/config/core/v3/protocol.proto#config-core-v3-httpprotocoloptions for more details on these settings. (#3628)
Fixes