|
1 | | -# libs/<name>/config.jsonnet |
| 1 | +// libs/<name>/config.jsonnet |
2 | 2 | local config = import 'jsonnet/config.jsonnet'; |
3 | 3 | local versions = [ |
4 | | - { tag: "v0.63.0", version: "0.63" }, |
5 | | - { tag: "v0.50.0", version: "0.50" }, |
6 | | - { tag: "v0.49.1", version: "0.49" }, |
7 | | - { tag: "v0.48.4", version: "0.48" }, |
8 | | - { tag: "v0.47.3", version: "0.47" }, |
9 | | - { tag: "v0.46.4", version: "0.46" } |
| 4 | + { tag: 'v0.63.0', version: '0.63' }, |
| 5 | + { tag: 'v0.50.0', version: '0.50' }, |
| 6 | + { tag: 'v0.49.1', version: '0.49' }, |
| 7 | + { tag: 'v0.48.4', version: '0.48' }, |
| 8 | + { tag: 'v0.47.3', version: '0.47' }, |
| 9 | + { tag: 'v0.46.4', version: '0.46' }, |
10 | 10 | ]; |
11 | 11 |
|
12 | 12 | config.new( |
13 | 13 | name='victoria-metrics-operator', |
14 | 14 | specs=[ |
15 | 15 | { |
16 | 16 | output: v.version, |
17 | | - crds: ['https://github.com/VictoriaMetrics/operator/releases/download/%s/crd.yaml' % v.tag] , |
| 17 | + crds: ['https://github.com/VictoriaMetrics/operator/releases/download/%s/crd.yaml' % v.tag], |
18 | 18 | prefix: '^com\\.victoriametrics\\.operator\\..*', |
19 | 19 | localName: 'victoriametrics', |
20 | | - }, |
| 20 | + } |
21 | 21 | for v in versions |
22 | 22 | ] |
23 | 23 | ) |
0 commit comments