Skip to content

feat(external-secrets): v0.16.2 and v0.17.0 #532

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
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
6 changes: 4 additions & 2 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'] // from v0.5 onward, a single bundle.yaml contains all of the external-secrets CRDs.
) =
{
output: output,
Expand All @@ -21,11 +21,13 @@ local versions = [
]),
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.
// 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'),
];

config.new(
Expand Down