consul/test/integration/connect/envoy/test-envoy-versions.sh
R.B. Boyer 1b413b0444
connect: support defining intentions using layer 7 criteria (#8839)
Extend Consul’s intentions model to allow for request-based access control enforcement for HTTP-like protocols in addition to the existing connection-based enforcement for unspecified protocols (e.g. tcp).
2020-10-06 17:09:13 -05:00

44 lines
547 B
Bash
Executable File

#!/bin/bash
set -euo pipefail
unset CDPATH
cd "$(dirname "$0")"
## no rbac url_path support
# 1.12.0
# 1.12.1
# 1.12.2
# 1.13.0
## does not exist in docker
# 1.13.5
# 1.14.0
versions=(
1.12.3
1.12.4
1.12.5
1.12.6
1.12.7
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
)
for v in "${versions[@]}"; do
echo "ENVOY_VERSION=${v}"
export ENVOY_VERSION="${v}"
go test -tags integration "$@"
done