File tree 9 files changed +11
-11
lines changed
internal/framework/gatewayclass
9 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ The following table lists the software versions NGINX Gateway Fabric supports.
66
66
67
67
| NGINX Gateway Fabric | Gateway API | Kubernetes | NGINX OSS | NGINX Plus |
68
68
| ----------------------| -------------| ------------| -----------| ------------|
69
- | Edge | 1.2.0 | 1.25+ | 1.27.3 | R33 |
69
+ | Edge | 1.2.1 | 1.25+ | 1.27.3 | R33 |
70
70
| 1.5.0 | 1.2.0 | 1.25+ | 1.27.2 | R33 |
71
71
| 1.4.0 | 1.1.0 | 1.25+ | 1.27.1 | R32 |
72
72
| 1.3.0 | 1.1.0 | 1.25+ | 1.27.0 | R32 |
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
13
13
)
14
14
15
15
const (
16
- // Regex from: https://github.com./kubernetes-sigs/gateway-api/blob/v1.2.0 /apis/v1/shared_types.go#L647
16
+ // Regex from: https://github.com./kubernetes-sigs/gateway-api/blob/v1.2.1 /apis/v1/shared_types.go#L660
17
17
controllerNameRegex = `^[a-z0-9]([-a-z0-9]*[a-z0-9])?(\.[a-z0-9]([-a-z0-9]*[a-z0-9])?)*\/[A-Za-z0-9\/\-._~%!$&'()*+,;=:]+$` //nolint:lll
18
18
)
19
19
Original file line number Diff line number Diff line change 1
1
apiVersion : kustomize.config.k8s.io/v1beta1
2
2
kind : Kustomization
3
3
resources :
4
- - https://github.com./kubernetes-sigs/gateway-api/config/crd/experimental?timeout=120&ref=v1.2.0
4
+ - https://github.com./kubernetes-sigs/gateway-api/config/crd/experimental?timeout=120&ref=v1.2.1
Original file line number Diff line number Diff line change 1
1
apiVersion : kustomize.config.k8s.io/v1beta1
2
2
kind : Kustomization
3
3
resources :
4
- - https://github.com./kubernetes-sigs/gateway-api/config/crd?timeout=120&ref=v1.2.0
4
+ - https://github.com./kubernetes-sigs/gateway-api/config/crd?timeout=120&ref=v1.2.1
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ require (
25
25
k8s.io/client-go v0.31.3
26
26
k8s.io/klog/v2 v2.130.1
27
27
sigs.k8s.io/controller-runtime v0.19.3
28
- sigs.k8s.io/gateway-api v1.2.0
28
+ sigs.k8s.io/gateway-api v1.2.1
29
29
)
30
30
31
31
require (
Original file line number Diff line number Diff line change @@ -228,8 +228,8 @@ k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 h1:pUdcCO1Lk/tbT5ztQWOBi5HBgbBP1
228
228
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 /go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0 =
229
229
sigs.k8s.io/controller-runtime v0.19.3 h1:XO2GvC9OPftRst6xWCpTgBZO04S2cbp0Qqkj8bX1sPw =
230
230
sigs.k8s.io/controller-runtime v0.19.3 /go.mod h1:j4j87DqtsThvwTv5/Tc5NFRyyF/RF0ip4+62tbTSIUM =
231
- sigs.k8s.io/gateway-api v1.2.0 h1:LrToiFwtqKTKZcZtoQPTuo3FxhrrhTgzQG0Te+YGSo8 =
232
- sigs.k8s.io/gateway-api v1.2.0 /go.mod h1:EpNfEXNjiYfUJypf0eZ0P5iXA9ekSGWaS1WgPaM42X0 =
231
+ sigs.k8s.io/gateway-api v1.2.1 h1:fZZ/+RyRb+Y5tGkwxFKuYuSRQHu9dZtbjenblleOLHM =
232
+ sigs.k8s.io/gateway-api v1.2.1 /go.mod h1:EpNfEXNjiYfUJypf0eZ0P5iXA9ekSGWaS1WgPaM42X0 =
233
233
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo =
234
234
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd /go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0 =
235
235
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4 =
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ const (
13
13
// BundleVersionAnnotation is the annotation on Gateway API CRDs that contains the installed version.
14
14
BundleVersionAnnotation = "gateway.networking.k8s.io/bundle-version"
15
15
// SupportedVersion is the supported version of the Gateway API CRDs.
16
- SupportedVersion = "v1.2.0 "
16
+ SupportedVersion = "v1.2.1 "
17
17
)
18
18
19
19
var gatewayCRDs = map [string ]apiVersion {
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ require (
16
16
k8s.io/apimachinery v0.31.3
17
17
k8s.io/client-go v0.31.3
18
18
sigs.k8s.io/controller-runtime v0.19.3
19
- sigs.k8s.io/gateway-api v1.2.0
19
+ sigs.k8s.io/gateway-api v1.2.1
20
20
sigs.k8s.io/yaml v1.4.0
21
21
)
22
22
Original file line number Diff line number Diff line change @@ -219,8 +219,8 @@ pgregory.net/rapid v1.1.0 h1:CMa0sjHSru3puNx+J0MIAuiiEV4N0qj8/cMWGBBCsjw=
219
219
pgregory.net/rapid v1.1.0 /go.mod h1:PY5XlDGj0+V1FCq0o192FdRhpKHGTRIWBgqjDBTrq04 =
220
220
sigs.k8s.io/controller-runtime v0.19.3 h1:XO2GvC9OPftRst6xWCpTgBZO04S2cbp0Qqkj8bX1sPw =
221
221
sigs.k8s.io/controller-runtime v0.19.3 /go.mod h1:j4j87DqtsThvwTv5/Tc5NFRyyF/RF0ip4+62tbTSIUM =
222
- sigs.k8s.io/gateway-api v1.2.0 h1:LrToiFwtqKTKZcZtoQPTuo3FxhrrhTgzQG0Te+YGSo8 =
223
- sigs.k8s.io/gateway-api v1.2.0 /go.mod h1:EpNfEXNjiYfUJypf0eZ0P5iXA9ekSGWaS1WgPaM42X0 =
222
+ sigs.k8s.io/gateway-api v1.2.1 h1:fZZ/+RyRb+Y5tGkwxFKuYuSRQHu9dZtbjenblleOLHM =
223
+ sigs.k8s.io/gateway-api v1.2.1 /go.mod h1:EpNfEXNjiYfUJypf0eZ0P5iXA9ekSGWaS1WgPaM42X0 =
224
224
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd h1:EDPBXCAspyGV4jQlpZSudPeMmr1bNJefnuqLsRAsHZo =
225
225
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd /go.mod h1:B8JuhiUyNFVKdsE8h686QcCxMaH6HrOAZj4vswFpcB0 =
226
226
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 h1:150L+0vs/8DA78h1u02ooW1/fFq/Lwr+sGiqlzvrtq4 =
You can’t perform that action at this time.
0 commit comments