From 91eace269c120d205498e62a4cc160e865028b1f Mon Sep 17 00:00:00 2001 From: Rob White Date: Sun, 4 Aug 2024 22:46:46 +0100 Subject: [PATCH] feat: Add version 1.1 of the Gateway API spec (#439) Also add all experimental versions --- libs/gateway-api/config.jsonnet | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/libs/gateway-api/config.jsonnet b/libs/gateway-api/config.jsonnet index 26340a8..3b26c81 100644 --- a/libs/gateway-api/config.jsonnet +++ b/libs/gateway-api/config.jsonnet @@ -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( @@ -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 ] )