Skip to content

Commit

Permalink
chore(argo-cd): reduce to supported versions (#505)
Browse files Browse the repository at this point in the history
  • Loading branch information
Duologic authored Feb 12, 2025
1 parent f46a14b commit 543ae9c
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion libs/argo-cd/config.jsonnet
Original file line number Diff line number Diff line change
@@ -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=[
Expand Down

0 comments on commit 543ae9c

Please sign in to comment.