Skip to content

Commit

Permalink
Discover: update supported distro versions in pick resource screen
Browse files Browse the repository at this point in the history
Even tho older versions are supported by Teleport, some of them reached
end of life and should be removed.

Ubuntu
https://ubuntu.com/about/release-cycle

Debian
https://www.debian.org/releases/

RHEL
https://access.redhat.com/support/policy/updates/errata

CentOS
https://www.centos.org/centos-stream/
  • Loading branch information
marcoandredinis authored and github-actions committed Nov 4, 2024
1 parent 2f74062 commit 6509cc1
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,23 +46,23 @@ const kubeKeywords = ['kubernetes', 'k8s', 'kubes', 'cluster'];

export const SERVERS: ResourceSpec[] = [
{
name: 'Ubuntu 14.04+',
name: 'Ubuntu 18.04+',
kind: ResourceKind.Server,
keywords: [...baseServerKeywords, 'ubuntu', 'linux'],
icon: 'linux',
event: DiscoverEventResource.Server,
platform: Platform.Linux,
},
{
name: 'Debian 8+',
name: 'Debian 11+',
kind: ResourceKind.Server,
keywords: [...baseServerKeywords, 'debian', 'linux'],
icon: 'linux',
event: DiscoverEventResource.Server,
platform: Platform.Linux,
},
{
name: 'RHEL/CentOS 7+',
name: 'RHEL 8+/CentOS Stream 9+',
kind: ResourceKind.Server,
keywords: [...baseServerKeywords, 'rhel', 'redhat', 'centos', 'linux'],
icon: 'linux',
Expand Down

0 comments on commit 6509cc1

Please sign in to comment.