-
Notifications
You must be signed in to change notification settings - Fork 4.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
102 changed files
with
1,096 additions
and
595 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
licenses(["notice"]) # Apache 2 | ||
|
||
exports_files(["edge_defaults_manifest.yaml"]) | ||
exports_files(["protodoc_manifest.yaml"]) |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,51 @@ | ||
fields: | ||
envoy.config.bootstrap.v3.Bootstrap.overload_manager: | ||
edge_config: | ||
example: | ||
refresh_interval: 0.25s | ||
resource_monitors: | ||
- name: "envoy.resource_monitors.fixed_heap" | ||
typed_config: | ||
"@type": type.googleapis.com/envoy.config.resource_monitor.fixed_heap.v2alpha.FixedHeapConfig | ||
max_heap_size_bytes: 1073741824 | ||
actions: | ||
- name: "envoy.overload_actions.shrink_heap" | ||
triggers: | ||
- name: "envoy.resource_monitors.fixed_heap" | ||
threshold: | ||
value: 0.90 | ||
- name: "envoy.overload_actions.stop_accepting_requests" | ||
triggers: | ||
- name: "envoy.resource_monitors.fixed_heap" | ||
threshold: | ||
value: 0.95 | ||
envoy.config.cluster.v3.Cluster.per_connection_buffer_limit_bytes: | ||
edge_config: { example: 32768 } | ||
envoy.config.cluster.v3.Cluster.http2_protocol_options: | ||
edge_config: | ||
example: | ||
initial_stream_window_size: 65536 # 64 KiB | ||
initial_connection_window_size: 1048576 # 1 MiB | ||
envoy.config.listener.v3.Listener.per_connection_buffer_limit_bytes: | ||
edge_config: { example: 32768 } | ||
envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.common_http_protocol_options: | ||
edge_config: | ||
example: | ||
idle_timeout: 900s # 15 mins | ||
headers_with_underscores_action: REJECT_REQUEST | ||
envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.http2_protocol_options: | ||
edge_config: | ||
example: | ||
max_concurrent_streams: 100 | ||
initial_stream_window_size: 65536 # 64 KiB | ||
initial_connection_window_size: 1048576 # 1 MiB | ||
envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.stream_idle_timeout: | ||
edge_config: | ||
example: 300s # 5 mins | ||
envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.request_timeout: | ||
edge_config: | ||
note: > | ||
This timeout is not compatible with streaming requests. | ||
example: 300s # 5 mins | ||
envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager.use_remote_address: | ||
edge_config: { example: true } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
1.12.4 (June 8, 2020) | ||
===================== | ||
|
||
Changes | ||
------- | ||
|
||
* http: added :ref:`headers_with_underscores_action setting <envoy_api_field_core.HttpProtocolOptions.headers_with_underscores_action>` to control how client requests with header names containing underscore characters are handled. The options are to allow such headers, reject request or drop headers. The default is to allow headers, preserving existing behavior. | ||
* http: fixed CVE-2020-11080 by rejecting HTTP/2 SETTINGS frames with too many parameters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
1.13.2 (June 8, 2020) | ||
===================== | ||
|
||
Changes | ||
------- | ||
|
||
* http: added :ref:`headers_with_underscores_action setting <envoy_api_field_core.HttpProtocolOptions.headers_with_underscores_action>` to control how client requests with header names containing underscore characters are handled. The options are to allow such headers, reject request or drop headers. The default is to allow headers, preserving existing behavior. | ||
* http: fixed CVE-2020-11080 by rejecting HTTP/2 SETTINGS frames with too many parameters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
1.14.2 (June 8, 2020) | ||
===================== | ||
|
||
Changes | ||
------- | ||
|
||
* http: fixed CVE-2020-11080 by rejecting HTTP/2 SETTINGS frames with too many parameters. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
7 changes: 5 additions & 2 deletions
7
generated_api_shadow/envoy/config/cluster/v4alpha/cluster.proto
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
16 changes: 11 additions & 5 deletions
16
...envoy/extensions/filters/network/http_connection_manager/v3/http_connection_manager.proto
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.