-
Notifications
You must be signed in to change notification settings - Fork 379
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(translator): extension server should fail close (#4936)
* Start of work on fail-close for extension server Signed-off-by: Lior Okman <[email protected]> * Override hook targets if the hooks return an error for HTTP listeners and HTTP routes. Signed-off-by: Lior Okman <[email protected]> * Added support for setting the extension server's mode to fail-open. Signed-off-by: Lior Okman <[email protected]> * Treat connection errors in the same way as hook errors. Signed-off-by: Lior Okman <[email protected]> * Added a note in the release notes Signed-off-by: Lior Okman <[email protected]> * Some more tests Signed-off-by: Lior Okman <[email protected]> * Updated release notes and comments as requested in the review. Signed-off-by: Lior Okman <[email protected]> * Removed a trailing space in the release notes. Signed-off-by: Lior Okman <[email protected]> --------- Signed-off-by: Lior Okman <[email protected]>
- Loading branch information
Showing
31 changed files
with
583 additions
and
44 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
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
20 changes: 20 additions & 0 deletions
20
...nal/xds/translator/testdata/in/extension-xds-ir/http-route-extension-translate-error.yaml
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,20 @@ | ||
http: | ||
- name: "extension-post-xdstranslate-hook-error" | ||
address: "0.0.0.0" | ||
port: 10080 | ||
hostnames: | ||
- "*" | ||
path: | ||
mergeSlashes: true | ||
escapedSlashesAction: UnescapeAndRedirect | ||
routes: | ||
- name: "first-route" | ||
hostname: "*" | ||
pathMatch: | ||
prefix: "/" | ||
destination: | ||
name: "fail-close-error" | ||
settings: | ||
- endpoints: | ||
- host: "1.2.3.4" | ||
port: 50000 |
27 changes: 27 additions & 0 deletions
27
...ranslator/testdata/out/extension-xds-ir/http-route-extension-listener-error.clusters.yaml
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,27 @@ | ||
- circuitBreakers: | ||
thresholds: | ||
- maxRetries: 1024 | ||
commonLbConfig: | ||
localityWeightedLbConfig: {} | ||
connectTimeout: 10s | ||
dnsLookupFamily: V4_PREFERRED | ||
edsClusterConfig: | ||
edsConfig: | ||
ads: {} | ||
resourceApiVersion: V3 | ||
serviceName: first-route-dest | ||
ignoreHealthOnHostRemoval: true | ||
lbPolicy: LEAST_REQUEST | ||
name: first-route-dest | ||
perConnectionBufferLimitBytes: 32768 | ||
type: EDS | ||
- loadAssignment: | ||
clusterName: mock-extension-injected-cluster | ||
endpoints: | ||
- lbEndpoints: | ||
- endpoint: | ||
address: | ||
socketAddress: | ||
address: exampleservice.examplenamespace.svc.cluster.local | ||
portValue: 5000 | ||
name: mock-extension-injected-cluster |
12 changes: 12 additions & 0 deletions
12
...anslator/testdata/out/extension-xds-ir/http-route-extension-listener-error.endpoints.yaml
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,12 @@ | ||
- clusterName: first-route-dest | ||
endpoints: | ||
- lbEndpoints: | ||
- endpoint: | ||
address: | ||
socketAddress: | ||
address: 1.2.3.4 | ||
portValue: 50000 | ||
loadBalancingWeight: 1 | ||
loadBalancingWeight: 1 | ||
locality: | ||
region: first-route-dest/backend/0 |
41 changes: 41 additions & 0 deletions
41
...anslator/testdata/out/extension-xds-ir/http-route-extension-listener-error.listeners.yaml
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,41 @@ | ||
- address: | ||
socketAddress: | ||
address: 0.0.0.0 | ||
portValue: 10080 | ||
defaultFilterChain: | ||
filters: | ||
- name: envoy.filters.network.http_connection_manager | ||
typedConfig: | ||
'@type': type.googleapis.com/envoy.extensions.filters.network.http_connection_manager.v3.HttpConnectionManager | ||
commonHttpProtocolOptions: | ||
headersWithUnderscoresAction: REJECT_REQUEST | ||
http2ProtocolOptions: | ||
initialConnectionWindowSize: 1048576 | ||
initialStreamWindowSize: 65536 | ||
maxConcurrentStreams: 100 | ||
httpFilters: | ||
- name: envoy.filters.http.router | ||
typedConfig: | ||
'@type': type.googleapis.com/envoy.extensions.filters.http.router.v3.Router | ||
suppressEnvoyHeaders: true | ||
mergeSlashes: true | ||
normalizePath: true | ||
pathWithEscapedSlashesAction: UNESCAPE_AND_REDIRECT | ||
routeConfig: | ||
name: error_route_configuration | ||
virtualHosts: | ||
- domains: | ||
- '*' | ||
name: error_vhost | ||
routes: | ||
- directResponse: | ||
status: 500 | ||
match: | ||
prefix: / | ||
name: error_route | ||
serverHeaderTransformation: PASS_THROUGH | ||
statPrefix: http-10080 | ||
useRemoteAddress: true | ||
name: extension-post-xdslistener-hook-error | ||
name: extension-post-xdslistener-hook-error | ||
perConnectionBufferLimitBytes: 32768 |
14 changes: 14 additions & 0 deletions
14
.../translator/testdata/out/extension-xds-ir/http-route-extension-listener-error.routes.yaml
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,14 @@ | ||
- ignorePortInHostMatching: true | ||
name: extension-post-xdslistener-hook-error | ||
virtualHosts: | ||
- domains: | ||
- '*' | ||
name: extension-post-xdslistener-hook-error/* | ||
routes: | ||
- match: | ||
prefix: / | ||
name: first-route | ||
route: | ||
cluster: first-route-dest | ||
upgradeConfigs: | ||
- upgradeType: websocket |
4 changes: 4 additions & 0 deletions
4
...translator/testdata/out/extension-xds-ir/http-route-extension-listener-error.secrets.yaml
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,4 @@ | ||
- genericSecret: | ||
secret: | ||
inlineString: super-secret-extension-secret | ||
name: mock-extension-injected-secret |
27 changes: 27 additions & 0 deletions
27
...s/translator/testdata/out/extension-xds-ir/http-route-extension-route-error.clusters.yaml
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,27 @@ | ||
- circuitBreakers: | ||
thresholds: | ||
- maxRetries: 1024 | ||
commonLbConfig: | ||
localityWeightedLbConfig: {} | ||
connectTimeout: 10s | ||
dnsLookupFamily: V4_PREFERRED | ||
edsClusterConfig: | ||
edsConfig: | ||
ads: {} | ||
resourceApiVersion: V3 | ||
serviceName: extension-post-xdsroute-hook-error-dest | ||
ignoreHealthOnHostRemoval: true | ||
lbPolicy: LEAST_REQUEST | ||
name: extension-post-xdsroute-hook-error-dest | ||
perConnectionBufferLimitBytes: 32768 | ||
type: EDS | ||
- loadAssignment: | ||
clusterName: mock-extension-injected-cluster | ||
endpoints: | ||
- lbEndpoints: | ||
- endpoint: | ||
address: | ||
socketAddress: | ||
address: exampleservice.examplenamespace.svc.cluster.local | ||
portValue: 5000 | ||
name: mock-extension-injected-cluster |
Oops, something went wrong.