Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 5 additions & 13 deletions libs/external-secrets/config.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ local
version(
output,
version,
crdFiles=['bundle.yaml'] // from v0.5 onward, a single bundle.yaml contains all of the external-secrets CRDs.
crdFiles=['bundle.yaml']
) =
{
output: output,
Expand All @@ -13,19 +13,11 @@ local
};

local versions = [
version('0.4', '0.4.4', crdFiles=[
// 0.4.4 is the last version with individual CRD files
'external-secrets.io_clustersecretstores.yaml',
'external-secrets.io_externalsecrets.yaml',
'external-secrets.io_secretstores.yaml',
]),
version('0.5', '0.5.9'),
version('0.6', '0.6.1'),
// From v0.7, the upstream kustomization.yaml was actually not properly containing all CRDs, we parse the bundle.yaml instead across the board for now.
version('0.7', '0.7.3'),
version('0.8', '0.8.12'),
version('0.9', '0.9.12'),
version('0.15', '0.15.1'),
version('0.16', '0.16.2'),
version('0.17', '0.17.0'),
version('0.18', '0.18.2'),
version('0.19', '0.19.2'),
];

config.new(
Expand Down