Skip to content

Commit

Permalink
victoria-metrics-operator (#488)
Browse files Browse the repository at this point in the history
* added config for victoria metrics operator

* added config for victoria metrics operator

* added versions from 0.30 to 0.50

* Victoria-metrics only past 5 versions
  • Loading branch information
anatolPavl authored Feb 19, 2025
1 parent 31808bf commit 6dec712
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions libs/victoria-metrics-operator/config.jsonnet
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
# libs/<name>/config.jsonnet
local config = import 'jsonnet/config.jsonnet';
local versions = [
{ tag: "v0.50.0", version: "0.50" },
{ tag: "v0.49.1", version: "0.49" },
{ tag: "v0.48.4", version: "0.48" },
{ tag: "v0.47.3", version: "0.47" },
{ tag: "v0.46.4", version: "0.46" }
];

config.new(
name='victoria-metrics-operator',
specs=[
{
output: v.version,
crds: ['https://github.com/VictoriaMetrics/operator/releases/download/%s/crd.yaml' % v.tag] ,
prefix: '^com\\.victoriametrics\\.operator\\..*',
localName: 'victoriametrics',
},
for v in versions
]
)

0 comments on commit 6dec712

Please sign in to comment.