Skip to content

Commit 7e2c55e

Browse files
author
data-plane-api(CircleCI)
committed
Add header match to http health check filter (#3097)
Signed-off-by: Henna Huang <[email protected]> Mirrored from https://github.com/envoyproxy/envoy @ ce9d01ded30c4fe3f32baca410d8ae529e40acaf
1 parent bb35292 commit 7e2c55e

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

envoy/config/filter/http/health_check/v2/BUILD

+2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ api_proto_library(
66
name = "health_check",
77
srcs = ["health_check.proto"],
88
deps = [
9+
"//envoy/api/v2/route",
910
"//envoy/type:percent",
1011
],
1112
)
@@ -14,6 +15,7 @@ api_go_proto_library(
1415
name = "health_check",
1516
proto = ":health_check",
1617
deps = [
18+
"//envoy/api/v2/route:route_go_proto",
1719
"//envoy/type:percent_go_proto",
1820
],
1921
)

envoy/config/filter/http/health_check/v2/health_check.proto

+10-1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ option go_package = "v2";
66
import "google/protobuf/duration.proto";
77
import "google/protobuf/wrappers.proto";
88

9+
import "envoy/api/v2/route/route.proto";
910
import "envoy/type/percent.proto";
1011

1112
import "validate/validate.proto";
@@ -20,7 +21,7 @@ message HealthCheck {
2021

2122
// Specifies the incoming HTTP endpoint that should be considered the
2223
// health check endpoint. For example */healthcheck*.
23-
string endpoint = 2 [(validate.rules).string.min_bytes = 1];
24+
string endpoint = 2 [(validate.rules).string.min_bytes = 1, deprecated = true];
2425

2526
// If operating in pass through mode, the amount of time in milliseconds
2627
// that the filter should cache the upstream response.
@@ -30,4 +31,12 @@ message HealthCheck {
3031
// names and the minimum percentage of servers in each of those clusters that
3132
// must be healthy in order for the filter to return a 200.
3233
map<string, envoy.type.Percent> cluster_min_healthy_percentages = 4;
34+
35+
// [#not-implemented-hide:]
36+
// Specifies a set of health check request headers to match on. The health check filter will
37+
// check a request’s headers against all the specified headers. To specify the health check
38+
// endpoint, set the ``:path`` header to match on. Note that if the
39+
// :ref:`endpoint <envoy_api_field_config.filter.http.health_check.v2.HealthCheck.endpoint>`
40+
// field is set, it will overwrite any ``:path`` header to match.
41+
repeated envoy.api.v2.route.HeaderMatcher headers = 5;
3342
}

0 commit comments

Comments
 (0)