2020-07-31 20:52:49 +00:00
|
|
|
package proxysupport
|
|
|
|
|
|
|
|
// EnvoyVersions lists the latest officially supported versions of envoy.
|
|
|
|
//
|
2020-08-26 15:04:11 +00:00
|
|
|
// This list must be sorted by semver descending. Only one point release for
|
|
|
|
// each major release should be present.
|
|
|
|
//
|
2020-07-31 20:52:49 +00:00
|
|
|
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
|
|
|
|
var EnvoyVersions = []string{
|
2021-02-22 21:00:15 +00:00
|
|
|
// TODO(rb): add in 1.17.0 when the v3 support comes
|
2021-02-10 19:11:15 +00:00
|
|
|
"1.16.2",
|
|
|
|
"1.15.3",
|
|
|
|
"1.14.6",
|
2020-07-31 20:52:49 +00:00
|
|
|
}
|