mirror of
https://github.com/status-im/consul.git
synced 2025-02-21 18:08:23 +00:00
12 lines
251 B
Go
12 lines
251 B
Go
|
package proxysupport
|
||
|
|
||
|
// EnvoyVersions lists the latest officially supported versions of envoy.
|
||
|
//
|
||
|
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
|
||
|
var EnvoyVersions = []string{
|
||
|
"1.15.0",
|
||
|
"1.14.4",
|
||
|
"1.13.4",
|
||
|
"1.12.6",
|
||
|
}
|