Skip to content

Commit

Permalink
connect: update supported envoy point releases to 1.14.6, 1.13.7, 1.1…
Browse files Browse the repository at this point in the history
…2.7, 1.11.2

selective backport of #9737
  • Loading branch information
rboyer committed Feb 8, 2021
1 parent 556b8bd commit 841e0c6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -694,18 +694,18 @@ jobs:
ENVOY_VERSION: "1.12.7"
steps: *ENVOY_INTEGRATION_TEST_STEPS

envoy-integration-test-1_13_6:
envoy-integration-test-1_13_7:
docker:
- image: *GOLANG_IMAGE
environment:
ENVOY_VERSION: "1.13.6"
ENVOY_VERSION: "1.13.7"
steps: *ENVOY_INTEGRATION_TEST_STEPS

envoy-integration-test-1_14_5:
envoy-integration-test-1_14_6:
docker:
- image: *GOLANG_IMAGE
environment:
ENVOY_VERSION: "1.14.5"
ENVOY_VERSION: "1.14.6"
steps: *ENVOY_INTEGRATION_TEST_STEPS

# run integration tests for the connect ca providers
Expand Down Expand Up @@ -846,10 +846,10 @@ workflows:
- envoy-integration-test-1_12_7:
requires:
- dev-build
- envoy-integration-test-1_13_6:
- envoy-integration-test-1_13_7:
requires:
- dev-build
- envoy-integration-test-1_14_5:
- envoy-integration-test-1_14_6:
requires:
- dev-build
website:
Expand Down
4 changes: 2 additions & 2 deletions agent/xds/proxysupport/proxysupport.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ package proxysupport
//
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
var EnvoyVersions = []string{
"1.14.5",
"1.13.6",
"1.14.6",
"1.13.7",
"1.12.7",
"1.11.2",
}
2 changes: 1 addition & 1 deletion test/integration/connect/envoy/run-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -eEuo pipefail
DEBUG=${DEBUG:-}

# ENVOY_VERSION to run each test against
ENVOY_VERSION=${ENVOY_VERSION:-"1.14.5"}
ENVOY_VERSION=${ENVOY_VERSION:-"1.14.6"}
export ENVOY_VERSION

if [ ! -z "$DEBUG" ] ; then
Expand Down
3 changes: 2 additions & 1 deletion test/integration/connect/envoy/test-envoy-versions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,13 @@ cd "$(dirname "$0")"
# MISSING: 1.14.0
# MISSING: 1.13.5
versions=(
1.14.6
1.14.5
1.14.4
1.14.3
1.14.2
1.14.1
1.13.7
1.13.6
1.13.4
1.13.3
Expand All @@ -31,7 +33,6 @@ versions=(
1.11.2
1.11.1
1.11.0
1.10.0
)

for v in "${versions[@]}"; do
Expand Down

0 comments on commit 841e0c6

Please sign in to comment.