From 543ae9c6756b542898e28b367b128f06c537fb4b Mon Sep 17 00:00:00 2001 From: Jeroen Op 't Eynde Date: Wed, 12 Feb 2025 15:41:02 +0100 Subject: [PATCH] chore(argo-cd): reduce to supported versions (#505) --- libs/argo-cd/config.jsonnet | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/libs/argo-cd/config.jsonnet b/libs/argo-cd/config.jsonnet index 3a1175a..b4f8ff5 100644 --- a/libs/argo-cd/config.jsonnet +++ b/libs/argo-cd/config.jsonnet @@ -1,7 +1,15 @@ local config = import 'jsonnet/config.jsonnet'; -local versions = ['2.5.22', '2.6.15', '2.7.18', '2.8.21', '2.9.22', '2.10.18', '2.11.12', '2.12.8', '2.13.2']; +local versions = + [ + '2.11.12', + '2.12.8', + '2.13.2', + ]; local manifests = ['application-crd.yaml', 'appproject-crd.yaml', 'applicationset-crd.yaml']; +// Source: https://argo-cd.readthedocs.io/en/stable/developer-guide/release-process-and-cadence/#patch-releases-eg-25x +assert std.length(versions) <= 3 : 'Only the three most recent minor versions are eligible for patch releases. Versions older than the three most recent minor versions are considered EOL and will not receive bug fixes or security updates.'; + config.new( name='argo-cd', specs=[