consul/test/integration/connect/envoy/test-envoy-versions.sh
R.B. Boyer 3b6ffc447b
xds: remove deprecated usages of xDS (#9602)
Note that this does NOT upgrade to xDS v3. That will come in a future PR.

Additionally:

- Ignored staticcheck warnings about how github.com/golang/protobuf is deprecated.
- Shuffled some agent/xds imports in advance of a later xDS v3 upgrade.
- Remove support for envoy 1.13.x but don't add in 1.17.x yet. We have to wait until the xDS v3 support is added in a follow-up PR.

Fixes #8425
2021-02-22 15:00:15 -06:00

44 lines
577 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
unset CDPATH
cd "$(dirname "$0")"
## no rbac url_path support
# 1.13.0
## does not exist in docker
# 1.13.5
# 1.14.0
## doesn't fully support the renamed filters
# 1.13.1
# 1.13.2
# 1.13.3
# 1.13.4
# 1.13.6
# 1.13.7
versions=(
1.14.1
1.14.2
1.14.3
1.14.4
1.14.5
1.14.6
1.15.0
1.15.1
1.15.2
1.15.3
1.16.0
1.16.1
1.16.2
)
for v in "${versions[@]}"; do
echo "ENVOY_VERSION=${v}"
export ENVOY_VERSION="${v}"
go test -tags integration "$@"
done