Skip to content

Commit e16cb30

Browse files
committed
Add support for multiple concurrent versions. Adds back the old v1.0.2
1 parent 94204b9 commit e16cb30

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

libs/cluster-api/config.jsonnet

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,21 @@
11
local config = import 'jsonnet/config.jsonnet';
22

3+
local versions = [
4+
'v1.0.2',
5+
'v1.13.2',
6+
];
7+
8+
39
config.new(
410
name='cluster-api',
511
specs=[
612
{
7-
output: 'v1.13.2',
13+
output: version,
814
openapi: 'http://localhost:8001/openapi/v2',
915
prefix: '^io\\.x-k8s\\.cluster\\..*',
1016
crds: ['https://github.com/kubernetes-sigs/cluster-api/releases/download/v1.13.2/core-components.yaml'],
1117
localName: 'cluster-api',
1218
},
19+
for version in versions
1320
]
1421
)

0 commit comments

Comments
 (0)