Skip to content

Commit f1d6314

Browse files
committed
bazel: update to have new filter changes
1 parent e5d530c commit f1d6314

File tree

2 files changed

+44
-7
lines changed

2 files changed

+44
-7
lines changed

bazel/extensions/extensions_build_config.bzl

+7-7
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ EXTENSIONS = {
1919
#
2020

2121
"envoy.clusters.aggregate": "//source/extensions/clusters/aggregate:cluster",
22+
"envoy.clusters.dns": "//source/extensions/clusters/dns:dns_cluster_lib",
2223
"envoy.clusters.dynamic_forward_proxy": "//source/extensions/clusters/dynamic_forward_proxy:cluster",
2324
"envoy.clusters.eds": "//source/extensions/clusters/eds:eds_lib",
2425
"envoy.clusters.redis": "//source/extensions/clusters/redis:redis_cluster",
@@ -62,7 +63,7 @@ EXTENSIONS = {
6263
#
6364

6465
"envoy.health_checkers.redis": "//source/extensions/health_checkers/redis:config",
65-
# "envoy.health_checkers.thrift": "//source/extensions/health_checkers/thrift:config",
66+
# "envoy.health_checkers.thrift": "//source/extensions/health_checkers/thrift:config",
6667
"envoy.health_checkers.tcp": "//source/extensions/health_checkers/tcp:health_checker_lib",
6768
"envoy.health_checkers.http": "//source/extensions/health_checkers/http:health_checker_lib",
6869
"envoy.health_checkers.grpc": "//source/extensions/health_checkers/grpc:health_checker_lib",
@@ -71,7 +72,7 @@ EXTENSIONS = {
7172
# Health check event sinks
7273
#
7374

74-
# "envoy.health_check.event_sinks.file": "//source/extensions/health_check/event_sinks/file:file_sink_lib",
75+
# "envoy.health_check.event_sinks.file": "//source/extensions/health_check/event_sinks/file:file_sink_lib",
7576

7677
#
7778
# Input Matchers
@@ -133,6 +134,7 @@ EXTENSIONS = {
133134
"envoy.filters.http.adaptive_concurrency": "//source/extensions/filters/http/adaptive_concurrency:config",
134135
"envoy.filters.http.admission_control": "//source/extensions/filters/http/admission_control:config",
135136
"envoy.filters.http.alternate_protocols_cache": "//source/extensions/filters/http/alternate_protocols_cache:config",
137+
"envoy.filters.http.api_key_auth": "//source/extensions/filters/http/api_key_auth:config",
136138
"envoy.filters.http.aws_lambda": "//source/extensions/filters/http/aws_lambda:config",
137139
"envoy.filters.http.aws_request_signing": "//source/extensions/filters/http/aws_request_signing:config",
138140
"envoy.filters.http.bandwidth_limit": "//source/extensions/filters/http/bandwidth_limit:config",
@@ -166,7 +168,7 @@ EXTENSIONS = {
166168
"envoy.filters.http.ip_tagging": "//source/extensions/filters/http/ip_tagging:config",
167169
"envoy.filters.http.json_to_metadata": "//source/extensions/filters/http/json_to_metadata:config",
168170
"envoy.filters.http.jwt_authn": "//source/extensions/filters/http/jwt_authn:config",
169-
# "envoy.filters.http.rate_limit_quota": "//source/extensions/filters/http/rate_limit_quota:config",
171+
"envoy.filters.http.rate_limit_quota": "//source/extensions/filters/http/rate_limit_quota:config",
170172
# Disabled by default. kill_request is not built into most prebuilt images.
171173
# For instructions for building with disabled-by-default filters enabled, see
172174
# https://github.com/envoyproxy/envoy/blob/main/bazel/README.md#enabling-and-disabling-extensions
@@ -277,7 +279,6 @@ EXTENSIONS = {
277279

278280
"envoy.tracers.datadog": "//source/extensions/tracers/datadog:config",
279281
"envoy.tracers.zipkin": "//source/extensions/tracers/zipkin:config",
280-
"envoy.tracers.opencensus": "//source/extensions/tracers/opencensus:config",
281282
"envoy.tracers.xray": "//source/extensions/tracers/xray:config",
282283
"envoy.tracers.skywalking": "//source/extensions/tracers/skywalking:config",
283284
"envoy.tracers.opentelemetry": "//source/extensions/tracers/opentelemetry:config",
@@ -328,7 +329,7 @@ EXTENSIONS = {
328329
#
329330
# CacheFilter plugins
330331
#
331-
# "envoy.extensions.http.cache.file_system_http_cache": "//source/extensions/http/cache/file_system_http_cache:config",
332+
"envoy.extensions.http.cache.file_system_http_cache": "//source/extensions/http/cache/file_system_http_cache:config",
332333
"envoy.extensions.http.cache.simple": "//source/extensions/http/cache/simple_http_cache:config",
333334

334335
#
@@ -345,7 +346,7 @@ EXTENSIONS = {
345346

346347
"envoy.upstreams.http.http": "//source/extensions/upstreams/http/http:config",
347348
"envoy.upstreams.http.tcp": "//source/extensions/upstreams/http/tcp:config",
348-
# "envoy.upstreams.http.udp": "//source/extensions/upstreams/http/udp:config",
349+
"envoy.upstreams.http.udp": "//source/extensions/upstreams/http/udp:config",
349350

350351
#
351352
# Watchdog actions
@@ -526,7 +527,6 @@ EXTENSIONS = {
526527
#
527528
# cluster specifier plugin
528529
#
529-
530530
"envoy.router.cluster_specifier_plugin.lua": "//source/extensions/router/cluster_specifiers/lua:config",
531531

532532
#

bazel/foreign_cc/sha-fixes.yaml

+37
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,37 @@
1+
From 06ea5be1a0919908948dfb04a9262e1ba7bf922c Mon Sep 17 00:00:00 2001
2+
From: phlax <[email protected]>
3+
Date: Thu, 10 Oct 2024 18:42:30 +0100
4+
Subject: [PATCH] deps: Fix (renamed) ipp-crypto repo hash (#36540)
5+
6+
Signed-off-by: Ryan Northey <[email protected]>
7+
---
8+
bazel/repository_locations.bzl | 10 +++++-----
9+
1 file changed, 5 insertions(+), 5 deletions(-)
10+
11+
diff --git a/bazel/repository_locations.bzl b/bazel/repository_locations.bzl
12+
index e42a6e7e2fd3..29af2efdedbc 100644
13+
--- a/bazel/repository_locations.bzl
14+
+++ b/bazel/repository_locations.bzl
15+
@@ -443,17 +443,17 @@ REPOSITORY_LOCATIONS_SPEC = dict(
16+
com_github_intel_ipp_crypto_crypto_mb = dict(
17+
project_name = "libipp-crypto",
18+
project_desc = "Intel® Integrated Performance Primitives Cryptography",
19+
- project_url = "https://github.com/intel/ipp-crypto",
20+
+ project_url = "https://github.com/intel/cryptography-primitives",
21+
version = "2021.11.1",
22+
- sha256 = "d785fd8d5245ada79068588e5cc4d721d35c50e7d26fc268306f4aaae28ec6d6",
23+
- strip_prefix = "ipp-crypto-ippcp_{version}",
24+
- urls = ["https://github.com/intel/ipp-crypto/archive/ippcp_{version}.tar.gz"],
25+
+ sha256 = "76779724378fb3ec8b59047be02f6ca609c1ee70372b0205d937d451987bdb6c",
26+
+ strip_prefix = "cryptography-primitives-ippcp_{version}",
27+
+ urls = ["https://github.com/intel/cryptography-primitives/archive/ippcp_{version}.tar.gz"],
28+
release_date = "2024-02-28",
29+
use_category = ["dataplane_ext"],
30+
extensions = ["envoy.tls.key_providers.cryptomb"],
31+
cpe = "cpe:2.3:a:intel:cryptography_for_intel_integrated_performance_primitives:*",
32+
license = "Apache-2.0",
33+
- license_url = "https://github.com/intel/ipp-crypto/blob/ippcp_{version}/LICENSE",
34+
+ license_url = "https://github.com/intel/cryptography-primitives/blob/ippcp_{version}/LICENSE",
35+
),
36+
com_github_intel_qatlib = dict(
37+
project_name = "qatlib",

0 commit comments

Comments
 (0)