Merge pull request #11115 from hashicorp/eculver/envoy-1.19.1

Add support for Envoy 1.19.1
This commit is contained in:
Evan Culver 2021-10-04 23:13:26 +02:00 committed by GitHub
commit d279c60010
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
218 changed files with 40 additions and 724 deletions

3
.changelog/11115.txt Normal file
View File

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

View File

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

View File

@ -121,6 +121,7 @@ func TestDetermineSupportedProxyFeaturesFromString(t *testing.T) {
"1.16.0", "1.16.1", "1.16.2", "1.16.3", "1.16.4", "1.16.5",
"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.19.0", "1.19.1",
} {
cases[v] = testcase{expect: supportedProxyFeatures{}}
}

View File

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

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