Skip to content

Commit

Permalink
feat: Add version 1.1 of the Gateway API spec (#439)
Browse files Browse the repository at this point in the history
Also add all experimental versions
  • Loading branch information
wimnat authored Aug 4, 2024
1 parent 9ec2888 commit 91eace2
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions libs/gateway-api/config.jsonnet
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ local versions = [
{output: '0.7', version: '0.7.1'},
{output: '0.8', version: '0.8.1'},
{output: '1.0', version: '1.0.0'},
{output: '1.1', version: '1.1.0'},
];

config.new(
Expand All @@ -18,5 +19,15 @@ config.new(
localName: 'gateway-api',
}
for v in versions
] + [
{
output: v.output + "-experimental",
prefix: '^io\\.k8s\\.networking\\.gateway\\..*',
crds: [
'https://github.com/kubernetes-sigs/gateway-api/releases/download/v%(version)s/experimental-install.yaml' % { version: v.version }
],
localName: 'gateway-api',
}
for v in versions
]
)

0 comments on commit 91eace2

Please sign in to comment.