Skip to content

Commit

Permalink
chore: bump gateway APIs to 1.0.0-rc2 (#4981)
Browse files Browse the repository at this point in the history
* bump gateway APIs to 1.0.0-rc2

* update CHANGELOG and comments on skipped conformance tests
  • Loading branch information
randmonkey committed Oct 26, 2023
1 parent b2a0810 commit 7da78ac
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 10 deletions.
3 changes: 2 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,10 @@ Adding a new version? You'll need three changes:
- Docker images now use UID and GID 1000 to match Kong images. This should have
no user-facing effect.
[#4911](https://github.com/Kong/kubernetes-ingress-controller/pull/4911)
- Bump version of gateway API to `1.0.0-rc1` and support `Gateway`, `GatewayClass`
- Bump version of gateway API to `1.0.0-rc2` and support `Gateway`, `GatewayClass`
and `HTTPRoute` in API version `gateway.networking.k8s.io/v1`.
[#4893](https://github.com/Kong/kubernetes-ingress-controller/pull/4893)
[#4981](https://github.com/Kong/kubernetes-ingress-controller/pull/4981)
- Update `Gateway`s, `GatewayClass`es and `HTTPRoute`s in examples to API
version `gateway.networking.k8s.io/v1`.
[#4935](https://github.com/Kong/kubernetes-ingress-controller/pull/4935)
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ require (
k8s.io/client-go v0.28.3
k8s.io/component-base v0.28.3
sigs.k8s.io/controller-runtime v0.16.3
sigs.k8s.io/gateway-api v1.0.0-rc1
sigs.k8s.io/gateway-api v1.0.0-rc2
sigs.k8s.io/kustomize/api v0.15.0
sigs.k8s.io/kustomize/kyaml v0.15.0
sigs.k8s.io/yaml v1.3.0
Expand Down
4 changes: 2 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -689,8 +689,8 @@ k8s.io/utils v0.0.0-20230726121419-3b25d923346b h1:sgn3ZU783SCgtaSJjpcVVlRqd6GSn
k8s.io/utils v0.0.0-20230726121419-3b25d923346b/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
sigs.k8s.io/controller-runtime v0.16.3 h1:2TuvuokmfXvDUamSx1SuAOO3eTyye+47mJCigwG62c4=
sigs.k8s.io/controller-runtime v0.16.3/go.mod h1:j7bialYoSn142nv9sCOJmQgDXQXxnroFU4VnX/brVJ0=
sigs.k8s.io/gateway-api v1.0.0-rc1 h1:v7N9fWTcQxox5aP2IrViDw6imeUHMAt2WFjI4BYo0sw=
sigs.k8s.io/gateway-api v1.0.0-rc1/go.mod h1:+QpYENjk9s31/abu2Pv5BpK2v88UQDK2aeQCwCvy6ck=
sigs.k8s.io/gateway-api v1.0.0-rc2 h1:+7rq7j5fehUkMkgnJyL90mtXrVnz8aj5SXsRqIEW3Mk=
sigs.k8s.io/gateway-api v1.0.0-rc2/go.mod h1:+QpYENjk9s31/abu2Pv5BpK2v88UQDK2aeQCwCvy6ck=
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo=
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd/go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0=
sigs.k8s.io/kind v0.20.0 h1:f0sc3v9mQbGnjBUaqSFST1dwIuiikKVGgoTwpoP33a8=
Expand Down
8 changes: 6 additions & 2 deletions test/conformance/gateway_conformance_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ import (

var commonSkippedTests = []string{
// core conformance
// https://github.com/Kong/kubernetes-ingress-controller/issues/4916
tests.GatewaySecretInvalidReferenceGrant.ShortName,
// https://github.com/Kong/kubernetes-ingress-controller/issues/4982
tests.GatewayWithAttachedRoutes.ShortName,

// extended conformance
// https://github.com/Kong/kubernetes-ingress-controller/issues/4563
Expand All @@ -43,6 +43,10 @@ var commonSkippedTests = []string{
tests.HTTPRouteTimeoutBackendRequest.ShortName,
// https://github.com/Kong/kubernetes-ingress-controller/issues/4915
tests.HTTPRouteTimeoutRequest.ShortName,
// https://github.com/Kong/kubernetes-ingress-controller/issues/4983
tests.HTTPRouteBackendProtocolH2C.ShortName,
// https://github.com/Kong/kubernetes-ingress-controller/issues/4984
tests.HTTPRouteBackendProtocolWebSocket.ShortName,

// experimental conformance
// https://github.com/Kong/kubernetes-ingress-controller/issues/3684
Expand Down
8 changes: 4 additions & 4 deletions test/consts/zz_generated_gateway.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 7da78ac

Please sign in to comment.