mirror of https://github.com/status-im/consul.git
[1.9.x] connect: update supported envoy versions to 1.16.3, 1.15.4, 1.14.7, 1.13.7 (#10105)
This commit is contained in:
parent
c6905c0b39
commit
ee30a54c7f
|
@ -0,0 +1,3 @@
|
||||||
|
```release-note:improvement
|
||||||
|
connect: update supported envoy versions to 1.16.3, 1.15.4, 1.14.7, 1.13.7
|
||||||
|
```
|
|
@ -783,20 +783,20 @@ jobs:
|
||||||
path: *TEST_RESULTS_DIR
|
path: *TEST_RESULTS_DIR
|
||||||
- run: *notify-slack-failure
|
- run: *notify-slack-failure
|
||||||
|
|
||||||
envoy-integration-test-1_14_6:
|
envoy-integration-test-1_14_7:
|
||||||
<<: *ENVOY_TESTS
|
<<: *ENVOY_TESTS
|
||||||
environment:
|
environment:
|
||||||
ENVOY_VERSION: "1.14.6"
|
ENVOY_VERSION: "1.14.7"
|
||||||
|
|
||||||
envoy-integration-test-1_15_3:
|
envoy-integration-test-1_15_4:
|
||||||
<<: *ENVOY_TESTS
|
<<: *ENVOY_TESTS
|
||||||
environment:
|
environment:
|
||||||
ENVOY_VERSION: "1.15.3"
|
ENVOY_VERSION: "1.15.4"
|
||||||
|
|
||||||
envoy-integration-test-1_16_2:
|
envoy-integration-test-1_16_3:
|
||||||
<<: *ENVOY_TESTS
|
<<: *ENVOY_TESTS
|
||||||
environment:
|
environment:
|
||||||
ENVOY_VERSION: "1.16.2"
|
ENVOY_VERSION: "1.16.3"
|
||||||
|
|
||||||
# run integration tests for the connect ca providers
|
# run integration tests for the connect ca providers
|
||||||
test-connect-ca-providers:
|
test-connect-ca-providers:
|
||||||
|
@ -935,13 +935,13 @@ workflows:
|
||||||
- envoy-integration-test-1_13_7:
|
- envoy-integration-test-1_13_7:
|
||||||
requires:
|
requires:
|
||||||
- dev-build
|
- dev-build
|
||||||
- envoy-integration-test-1_14_6:
|
- envoy-integration-test-1_14_7:
|
||||||
requires:
|
requires:
|
||||||
- dev-build
|
- dev-build
|
||||||
- envoy-integration-test-1_15_3:
|
- envoy-integration-test-1_15_4:
|
||||||
requires:
|
requires:
|
||||||
- dev-build
|
- dev-build
|
||||||
- envoy-integration-test-1_16_2:
|
- envoy-integration-test-1_16_3:
|
||||||
requires:
|
requires:
|
||||||
- dev-build
|
- dev-build
|
||||||
website:
|
website:
|
||||||
|
|
|
@ -5,9 +5,11 @@ import (
|
||||||
|
|
||||||
envoycore "github.com/envoyproxy/go-control-plane/envoy/api/v2/core"
|
envoycore "github.com/envoyproxy/go-control-plane/envoy/api/v2/core"
|
||||||
envoytype "github.com/envoyproxy/go-control-plane/envoy/type"
|
envoytype "github.com/envoyproxy/go-control-plane/envoy/type"
|
||||||
"github.com/hashicorp/consul/sdk/testutil"
|
|
||||||
"github.com/hashicorp/go-version"
|
"github.com/hashicorp/go-version"
|
||||||
"github.com/stretchr/testify/require"
|
"github.com/stretchr/testify/require"
|
||||||
|
|
||||||
|
"github.com/hashicorp/consul/sdk/testutil"
|
||||||
)
|
)
|
||||||
|
|
||||||
func TestDetermineEnvoyVersionFromNode(t *testing.T) {
|
func TestDetermineEnvoyVersionFromNode(t *testing.T) {
|
||||||
|
@ -100,9 +102,9 @@ func TestDetermineSupportedProxyFeaturesFromString(t *testing.T) {
|
||||||
// Insert a bunch of valid versions.
|
// Insert a bunch of valid versions.
|
||||||
for _, v := range []string{
|
for _, v := range []string{
|
||||||
"1.13.1", "1.13.2", "1.13.3", "1.13.4", "1.13.6", "1.13.7",
|
"1.13.1", "1.13.2", "1.13.3", "1.13.4", "1.13.6", "1.13.7",
|
||||||
"1.14.1", "1.14.2", "1.14.3", "1.14.4", "1.14.5", "1.14.6",
|
"1.14.1", "1.14.2", "1.14.3", "1.14.4", "1.14.5", "1.14.6", "1.14.7",
|
||||||
"1.15.0", "1.15.1", "1.15.2", "1.15.3",
|
"1.15.0", "1.15.1", "1.15.2", "1.15.3", "1.15.4",
|
||||||
"1.16.0", "1.16.1", "1.16.2",
|
"1.16.0", "1.16.1", "1.16.2", "1.16.3",
|
||||||
} {
|
} {
|
||||||
cases[v] = testcase{expect: supportedProxyFeatures{}}
|
cases[v] = testcase{expect: supportedProxyFeatures{}}
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,8 +7,8 @@ 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.16.2",
|
"1.16.3",
|
||||||
"1.15.3",
|
"1.15.4",
|
||||||
"1.14.6",
|
"1.14.6",
|
||||||
"1.13.7",
|
"1.13.7",
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,136 +0,0 @@
|
||||||
{
|
|
||||||
"versionInfo": "00000001",
|
|
||||||
"resources": [
|
|
||||||
{
|
|
||||||
"@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
|
|
||||||
"name": "v1.web.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
|
||||||
"virtualHosts": [
|
|
||||||
{
|
|
||||||
"name": "v1.web.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
|
||||||
"domains": [
|
|
||||||
"*"
|
|
||||||
],
|
|
||||||
"routes": [
|
|
||||||
{
|
|
||||||
"match": {
|
|
||||||
"prefix": "/"
|
|
||||||
},
|
|
||||||
"route": {
|
|
||||||
"autoHostRewrite": true,
|
|
||||||
"cluster": "v1.web.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
|
||||||
"hashPolicy": [
|
|
||||||
{
|
|
||||||
"cookie": {
|
|
||||||
"name": "chocolate-chip"
|
|
||||||
},
|
|
||||||
"terminal": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"header": {
|
|
||||||
"headerName": "x-user-id"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"connectionProperties": {
|
|
||||||
"sourceIp": true
|
|
||||||
},
|
|
||||||
"terminal": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"validateClusters": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
|
|
||||||
"name": "v2.web.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
|
||||||
"virtualHosts": [
|
|
||||||
{
|
|
||||||
"name": "v2.web.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
|
||||||
"domains": [
|
|
||||||
"*"
|
|
||||||
],
|
|
||||||
"routes": [
|
|
||||||
{
|
|
||||||
"match": {
|
|
||||||
"prefix": "/"
|
|
||||||
},
|
|
||||||
"route": {
|
|
||||||
"autoHostRewrite": true,
|
|
||||||
"cluster": "v2.web.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
|
||||||
"hashPolicy": [
|
|
||||||
{
|
|
||||||
"cookie": {
|
|
||||||
"name": "chocolate-chip"
|
|
||||||
},
|
|
||||||
"terminal": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"header": {
|
|
||||||
"headerName": "x-user-id"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"connectionProperties": {
|
|
||||||
"sourceIp": true
|
|
||||||
},
|
|
||||||
"terminal": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"validateClusters": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"@type": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
|
|
||||||
"name": "web.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
|
||||||
"virtualHosts": [
|
|
||||||
{
|
|
||||||
"name": "web.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
|
||||||
"domains": [
|
|
||||||
"*"
|
|
||||||
],
|
|
||||||
"routes": [
|
|
||||||
{
|
|
||||||
"match": {
|
|
||||||
"prefix": "/"
|
|
||||||
},
|
|
||||||
"route": {
|
|
||||||
"autoHostRewrite": true,
|
|
||||||
"cluster": "web.default.dc1.internal.11111111-2222-3333-4444-555555555555.consul",
|
|
||||||
"hashPolicy": [
|
|
||||||
{
|
|
||||||
"cookie": {
|
|
||||||
"name": "chocolate-chip"
|
|
||||||
},
|
|
||||||
"terminal": true
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"header": {
|
|
||||||
"headerName": "x-user-id"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"connectionProperties": {
|
|
||||||
"sourceIp": true
|
|
||||||
},
|
|
||||||
"terminal": true
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"validateClusters": true
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"typeUrl": "type.googleapis.com/envoy.config.route.v3.RouteConfiguration",
|
|
||||||
"nonce": "00000001"
|
|
||||||
}
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "ingress-gateway",
|
"id": "ingress-gateway",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "ingress-gateway",
|
"id": "ingress-gateway",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "my-gateway-123",
|
"id": "my-gateway-123",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "my-gateway",
|
"id": "my-gateway",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "ingress-gateway-1",
|
"id": "ingress-gateway-1",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -13,7 +13,7 @@
|
||||||
"id": "test-proxy",
|
"id": "test-proxy",
|
||||||
"metadata": {
|
"metadata": {
|
||||||
"namespace": "default",
|
"namespace": "default",
|
||||||
"envoy_version": "1.16.2"
|
"envoy_version": "1.16.3"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"static_resources": {
|
"static_resources": {
|
||||||
|
|
|
@ -10,7 +10,7 @@ readonly HASHICORP_DOCKER_PROXY="docker.mirror.hashicorp.services"
|
||||||
DEBUG=${DEBUG:-}
|
DEBUG=${DEBUG:-}
|
||||||
|
|
||||||
# ENVOY_VERSION to run each test against
|
# ENVOY_VERSION to run each test against
|
||||||
ENVOY_VERSION=${ENVOY_VERSION:-"1.16.2"}
|
ENVOY_VERSION=${ENVOY_VERSION:-"1.16.3"}
|
||||||
export ENVOY_VERSION
|
export ENVOY_VERSION
|
||||||
|
|
||||||
if [ ! -z "$DEBUG" ] ; then
|
if [ ! -z "$DEBUG" ] ; then
|
||||||
|
|
Loading…
Reference in New Issue