consul/agent/xds/proxysupport/proxysupport.go
R.B. Boyer f5e62f1d1b
agent: expose the list of supported envoy versions on /v1/agent/self (#8566)
also backport of a portion of c599a2f5f411a5820b7f0b9b126e2d2270ba3a67 from #8424
2020-08-27 11:33:33 -05:00

15 lines
372 B
Go

package proxysupport
// EnvoyVersions lists the latest officially supported versions of envoy.
//
// This list must be sorted by semver descending. Only one point release for
// each major release should be present.
//
// see: https://www.consul.io/docs/connect/proxies/envoy#supported-versions
var EnvoyVersions = []string{
"1.14.2",
"1.13.2",
"1.12.4",
"1.11.2",
}