Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Qin Qin <qqin@google.com>
  • Loading branch information
qqustc committed Nov 25, 2020
1 parent 34a1853 commit a93c2f1
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions source/extensions/extensions_build_config.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -71,8 +71,6 @@ EXTENSIONS = {
"envoy.filters.http.health_check": "//source/extensions/filters/http/health_check:config",
"envoy.filters.http.ip_tagging": "//source/extensions/filters/http/ip_tagging:config",
"envoy.filters.http.jwt_authn": "//source/extensions/filters/http/jwt_authn:config",
# kill_request filter is excluded from envoy_all_extensions() in all_extensions.bzl to make sure it will not be built into Envoy by default. To build Envoy with kill_request filter, please include it in envoy_all_extensions().
"envoy.filters.http.kill_request": "//source/extensions/filters/http/kill_request:kill_request_config",
"envoy.filters.http.local_ratelimit": "//source/extensions/filters/http/local_ratelimit:config",
"envoy.filters.http.lua": "//source/extensions/filters/http/lua:config",
"envoy.filters.http.oauth2": "//source/extensions/filters/http/oauth2:config",
Expand Down Expand Up @@ -229,6 +227,11 @@ EXTENSIONS = {
"envoy.wasm.runtime.wasmtime": "//source/extensions/wasm_runtime/wasmtime:config",
}

DISABLED_BY_DEFAULT_EXTENSIONS = {
# kill_request filter is excluded from envoy_all_extensions() in all_extensions.bzl so that it will not be built into Envoy by default. To build Envoy with kill_request filter, please include it in envoy_all_extensions().
"envoy.filters.http.kill_request": "//third_party/envoy/src/source/extensions/filters/http/kill_request:kill_request_config",
}

# These can be changed to ["//visibility:public"], for downstream builds which
# need to directly reference Envoy extensions.
EXTENSION_CONFIG_VISIBILITY = ["//:extension_config"]
Expand Down

0 comments on commit a93c2f1

Please sign in to comment.