Skip to content
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

fix: the CRD path for ECK Operator and update the available versions #352

Merged
Merged
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: 12 additions & 6 deletions libs/eck-operator/config.jsonnet
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
local config = import 'jsonnet/config.jsonnet';

local versions = [
{ version: '1.7', tag: 'v1.7.0'},
{ version: '1.8', tag: 'v1.8.0'},
{ version: '2.4', tag: 'v2.4.0'},
{ version: '2.5', tag: 'v2.5.0'},
{ version: '2.6', tag: 'v2.6.1'},
{ version: '2.9', tag: 'v2.9.0' },
{ version: '2.8', tag: 'v2.8.0' },
{ version: '2.7', tag: 'v2.7.0' },
{ version: '2.6', tag: 'v2.6.1' },
{ version: '2.5', tag: 'v2.5.0' },
{ version: '2.4', tag: 'v2.4.0' },
{ version: '2.3', tag: 'v2.3.0' },
{ version: '2.2', tag: 'v2.2.0' },
{ version: '2.1', tag: 'v2.1.0' },
{ version: '2.0', tag: 'v2.0.0' },
{ version: '1.9', tag: 'v1.9.1' },
];

config.new(
Expand All @@ -14,7 +20,7 @@ config.new(
{
output: v.version,
prefix: '^co\\.elastic\\.k8s\\..*',
crds: ['https://raw.githubusercontent.com/elastic/cloud-on-k8s/%s/config/crds/v1/all-crds.yaml' % v.tag],
crds: ['https://raw.githubusercontent.com/elastic/cloud-on-k8s/%s/deploy/eck-operator/charts/eck-operator-crds/templates/all-crds.yaml' % v.tag],
localName: 'eck-operator',
}
for v in versions
Expand Down
Loading