Skip to content

Commit

Permalink
Update v3.3.x of argo-workflows (jsonnet-libs#155)
Browse files Browse the repository at this point in the history
  • Loading branch information
DeanBrunt authored May 6, 2022
1 parent 4814833 commit 5bc1c0e
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions libs/argo-workflows/config.jsonnet
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
local config = import 'jsonnet/config.jsonnet';
local versions = [
{ version: '3.1', tag: 'v3.1.12' },
{ version: '3.2', tag: 'v3.2.2' },
{ version: '3.3', tag: 'v3.3.3' },
];

config.new(
name='argo-workflows',
specs=[
{
output: '3.1',
output: v.version,
prefix: '^io\\.argoproj\\..*',
openapi: 'https://raw.githubusercontent.com/argoproj/argo-workflows/v3.1.12/api/jsonschema/schema.json',
openapi: 'https://raw.githubusercontent.com/argoproj/argo-workflows/%s/api/jsonschema/schema.json' % v.tag,
localName: 'argo_workflows',
},
{
output: '3.2',
prefix: '^io\\.argoproj\\..*',
openapi: 'https://raw.githubusercontent.com/argoproj/argo-workflows/v3.2.2/api/jsonschema/schema.json',
localName: 'argo_workflows',
},
}
for v in versions
]
)

0 comments on commit 5bc1c0e

Please sign in to comment.