Skip to content

Commit

Permalink
minio operator (#466)
Browse files Browse the repository at this point in the history
* Add minio-operator 6.0.0, fix prefix

* fix(minio-operator): reduce number of patch releases

---------

Co-authored-by: Dale A. Jackson <[email protected]>
  • Loading branch information
Duologic and JacksonWrath authored Oct 11, 2024
1 parent 8ea6672 commit 7af19c5
Showing 1 changed file with 6 additions and 10 deletions.
16 changes: 6 additions & 10 deletions libs/minio-operator/config.jsonnet
Original file line number Diff line number Diff line change
@@ -1,26 +1,22 @@
local config = import 'jsonnet/config.jsonnet';
local versions = [
'v5.0.15',
'v5.0.14',
'v5.0.13',
'v5.0.12',
'v5.0.11'
'v6.0.0',
'v5.0.15',
];

config.new(
name='minio-operator',
specs=[
{
output: v,
prefix: '^com\\.authzed\\..*',
prefix: '^io\\.min\\..*',
crds: [
'https://raw.githubusercontent.com/minio/operator/%s/resources/base/crds/job.min.io_miniojobs.yaml' % v,
'https://raw.githubusercontent.com/minio/operator/%s/resources/base/crds/minio.min.io_tenants.yaml' % v,
'https://raw.githubusercontent.com/minio/operator/%s/resources/base/crds/sts.min.io_policybindings.yaml.yaml' % v,
'https://raw.githubusercontent.com/minio/operator/%s/resources/base/crds/job.min.io_miniojobs.yaml' % v,
'https://raw.githubusercontent.com/minio/operator/%s/resources/base/crds/minio.min.io_tenants.yaml' % v,
'https://raw.githubusercontent.com/minio/operator/%s/resources/base/crds/sts.min.io_policybindings.yaml.yaml' % v,
],
localName: 'minio-operator',
}
for v in versions
]
)

0 comments on commit 7af19c5

Please sign in to comment.