open-consul/test/integration/connect/envoy/test-envoy-versions.sh
R.B. Boyer 2183842f0e
connect: add support for envoy 1.16.0, drop support for 1.12.x, and bump point releases as well (#8944)
Supported versions will be: "1.16.0", "1.15.2", "1.14.5", "1.13.6"
2020-10-22 13:46:19 -05:00

37 lines
464 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
versions=(
1.13.1
1.13.2
1.13.3
1.13.4
1.13.6
1.14.1
1.14.2
1.14.3
1.14.4
1.14.5
1.15.0
1.15.1
1.15.2
1.16.0
)
for v in "${versions[@]}"; do
echo "ENVOY_VERSION=${v}"
export ENVOY_VERSION="${v}"
go test -tags integration "$@"
done