connect: Add support for Envoy 1.20 (#11277)

This commit is contained in:
Evan Culver 2021-10-27 20:38:10 -05:00 committed by GitHub
parent d6b2a22fd0
commit 98acbfa79c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
188 changed files with 15 additions and 2 deletions

3
.changelog/11277.txt Normal file
View File

@ -0,0 +1,3 @@
```release-note:improvement
connect: update supported envoy versions to 1.20.0, 1.19.1, 1.18.4, 1.17.4
```

View File

@ -853,6 +853,11 @@ jobs:
environment: environment:
ENVOY_VERSION: "1.19.1" ENVOY_VERSION: "1.19.1"
envoy-integration-test-1_20_0:
<<: *ENVOY_TESTS
environment:
ENVOY_VERSION: "1.20.0"
# run integration tests for the connect ca providers # run integration tests for the connect ca providers
test-connect-ca-providers: test-connect-ca-providers:
docker: docker:
@ -1108,6 +1113,9 @@ workflows:
- envoy-integration-test-1_19_1: - envoy-integration-test-1_19_1:
requires: requires:
- dev-build - dev-build
- envoy-integration-test-1_20_0:
requires:
- dev-build
website: website:
unless: << pipeline.parameters.trigger-load-test >> unless: << pipeline.parameters.trigger-load-test >>

View File

@ -121,6 +121,7 @@ func TestDetermineSupportedProxyFeaturesFromString(t *testing.T) {
"1.17.0", "1.17.1", "1.17.2", "1.17.3", "1.17.4", "1.17.0", "1.17.1", "1.17.2", "1.17.3", "1.17.4",
"1.18.0", "1.18.1", "1.18.2", "1.18.3", "1.18.4", "1.18.0", "1.18.1", "1.18.2", "1.18.3", "1.18.4",
"1.19.0", "1.19.1", "1.19.0", "1.19.1",
"1.20.0",
} { } {
cases[v] = testcase{expect: supportedProxyFeatures{}} cases[v] = testcase{expect: supportedProxyFeatures{}}
} }

View File

@ -7,6 +7,7 @@ package proxysupport
// //
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions // see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
var EnvoyVersions = []string{ var EnvoyVersions = []string{
"1.20.0",
"1.19.1", "1.19.1",
"1.18.4", "1.18.4",
"1.17.4", "1.17.4",

Some files were not shown because too many files have changed in this diff Show More