diff --git a/config/os.go b/config/os.go index 31ee5840..b0c134df 100644 --- a/config/os.go +++ b/config/os.go @@ -131,6 +131,9 @@ func GetEOL(family, release string) (eol EOL, found bool) { "20.04": { StandardSupportUntil: time.Date(2025, 4, 1, 23, 59, 59, 0, time.UTC), }, + "20.10": { + StandardSupportUntil: time.Date(2021, 7, 1, 23, 59, 59, 0, time.UTC), + }, "21.04": { StandardSupportUntil: time.Date(2022, 1, 1, 23, 59, 59, 0, time.UTC), }, diff --git a/config/os_test.go b/config/os_test.go index 682a7f34..a27d3b2f 100644 --- a/config/os_test.go +++ b/config/os_test.go @@ -193,6 +193,14 @@ func TestEOL_IsStandardSupportEnded(t *testing.T) { stdEnded: false, extEnded: false, }, + { + name: "Ubuntu 20.10 supported", + fields: fields{family: Ubuntu, release: "20.10"}, + now: time.Date(2021, 5, 1, 23, 59, 59, 0, time.UTC), + found: true, + stdEnded: false, + extEnded: false, + }, { name: "Ubuntu 21.04 supported", fields: fields{family: Ubuntu, release: "21.04"},