mirror of https://github.com/status-im/consul.git
Merge pull request #11115 from hashicorp/eculver/envoy-1.19.1
Add support for Envoy 1.19.1
This commit is contained in:
commit
c7747212c3
|
@ -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
|
||||||
|
```
|
|
@ -859,6 +859,11 @@ jobs:
|
||||||
environment:
|
environment:
|
||||||
ENVOY_VERSION: "1.18.4"
|
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
|
# run integration tests for the connect ca providers
|
||||||
test-connect-ca-providers:
|
test-connect-ca-providers:
|
||||||
docker:
|
docker:
|
||||||
|
@ -1117,6 +1122,9 @@ workflows:
|
||||||
- envoy-integration-test-1_18_4:
|
- envoy-integration-test-1_18_4:
|
||||||
requires:
|
requires:
|
||||||
- dev-build
|
- dev-build
|
||||||
|
- envoy-integration-test-1_19_1:
|
||||||
|
requires:
|
||||||
|
- dev-build
|
||||||
|
|
||||||
website:
|
website:
|
||||||
unless: << pipeline.parameters.trigger-load-test >>
|
unless: << pipeline.parameters.trigger-load-test >>
|
||||||
|
|
|
@ -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.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.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",
|
||||||
} {
|
} {
|
||||||
cases[v] = testcase{expect: supportedProxyFeatures{}}
|
cases[v] = testcase{expect: supportedProxyFeatures{}}
|
||||||
}
|
}
|
||||||
|
|
|
@ -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.19.1",
|
||||||
"1.18.4",
|
"1.18.4",
|
||||||
"1.17.4",
|
"1.17.4",
|
||||||
"1.16.5",
|
"1.16.5",
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue