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 committed Nov 1, 2024
1 parent 17aa31b commit c90baff
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 c90baff

Please sign in to comment.