Skip to content

Commit 34e892c

Browse files
authored
chore(crossplane-core): bump to 1.19 (#594)
* chore(crossplane-core): bump to 1.19 * fix(victoria-metrics-operator): remove odd space character
1 parent 71a67ed commit 34e892c

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

libs/crossplane-core/config.jsonnet

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ config.new(
66
// Crossplane itself
77
// Release support table: https://github.com/crossplane/crossplane#releases
88
{
9-
output: 'crossplane/1.18',
9+
output: 'crossplane/1.19',
1010
prefix: '^io\\.crossplane\\.(pkg|apiextensions)\\..*',
11-
crds: ['https://doc.crds.dev/raw/github.com/crossplane/crossplane@v1.18.0'],
11+
crds: ['https://doc.crds.dev/raw/github.com/crossplane/crossplane@v1.19.0'],
1212
localName: 'crossplane',
1313
patchDir: 'custom/crossplane',
1414
},
Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,23 @@
1-
# libs/<name>/config.jsonnet
1+
// libs/<name>/config.jsonnet
22
local config = import 'jsonnet/config.jsonnet';
33
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' },
1010
];
1111

1212
config.new(
1313
name='victoria-metrics-operator',
1414
specs=[
1515
{
1616
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],
1818
prefix: '^com\\.victoriametrics\\.operator\\..*',
1919
localName: 'victoriametrics',
20-
},
20+
}
2121
for v in versions
2222
]
2323
)

0 commit comments

Comments
 (0)