From cadc6758e0e2d314a948200da0b99693d69b9b80 Mon Sep 17 00:00:00 2001 From: Brandon Palm Date: Wed, 1 Nov 2023 10:53:46 -0500 Subject: [PATCH] Add OCP 4.14 to the compatibility matrix --- pkg/compatibility/compatibility.go | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/pkg/compatibility/compatibility.go b/pkg/compatibility/compatibility.go index 6122e6043..0f142f69b 100644 --- a/pkg/compatibility/compatibility.go +++ b/pkg/compatibility/compatibility.go @@ -56,11 +56,21 @@ var ( // update documentation. // Full Support + "4.14": { + GADate: time.Date(2023, 10, 31, 0, 0, 0, 0, time.UTC), // October 31, 2023 + FSEDate: time.Date(2024, 1, 31, 0, 0, 0, 0, time.UTC), // January 31, 2024 + MSEDate: time.Date(2025, 5, 1, 0, 0, 0, 0, time.UTC), // May 1, 2025 + // Note: FSEDate (Release of 4.14 + 3 months) is currently a "guess". Update when available. + + // OS Compatibility + MinRHCOSVersion: "4.14", + RHELVersionsAccepted: []string{"8.4", "8.5"}, + }, + "4.13": { - GADate: time.Date(2023, 5, 17, 0, 0, 0, 0, time.UTC), // January 17, 2023 - FSEDate: time.Date(2024, 8, 17, 0, 0, 0, 0, time.UTC), // August 17, 2024 + GADate: time.Date(2023, 5, 17, 0, 0, 0, 0, time.UTC), // May 17, 2023 + FSEDate: time.Date(2024, 1, 31, 0, 0, 0, 0, time.UTC), // January 31, 2024 MSEDate: time.Date(2024, 11, 17, 0, 0, 0, 0, time.UTC), // November 17, 2024 - // Note: FSEDate (Release of 4.13 + 3 months) is currently a "guess". Update when available. // OS Compatibility MinRHCOSVersion: "4.13",