File tree Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Expand file tree Collapse file tree 5 files changed +7
-7
lines changed Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ The following table lists the software versions NGINX Kubernetes Gateway support
46
46
47
47
| NGINX Kubernetes Gateway | Gateway API | Kubernetes | NGINX OSS |
48
48
| -| -| -| -|
49
- | Edge | 0.7.0 | 1.21+ | 1.25.x *|
49
+ | Edge | 0.7.1 | 1.21+ | 1.25.x *|
50
50
| 0.3.0 | 0.6.2 | 1.21+ | 1.23.x *|
51
51
| 0.2.0 | 0.5.1 | 1.21+ | 1.21.x *|
52
52
| 0.1.0 | 0.5.0 | 1.19+ | 1.21.3 |
Original file line number Diff line number Diff line change @@ -13,7 +13,7 @@ import (
13
13
14
14
const (
15
15
// nolint:lll
16
- // Regex from: https://github.com/kubernetes-sigs/gateway-api/blob/v0.7.0 /apis/v1beta1/shared_types.go#L495
16
+ // Regex from: https://github.com/kubernetes-sigs/gateway-api/blob/v0.7.1 /apis/v1beta1/shared_types.go#L495
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 @@ -27,7 +27,7 @@ prepare-nkg: ## Build and load NKG container on configured kind cluster
27
27
28
28
.PHONY : install-nkg
29
29
install-nkg : # # Install NKG with provisioner on configured kind cluster
30
- kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v0.7.0 /standard-install.yaml
30
+ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v0.7.1 /standard-install.yaml
31
31
kubectl wait --for=condition=available --timeout=60s deployment gateway-api-admission-server -n gateway-system
32
32
kubectl apply -f ../deploy/manifests/namespace.yaml
33
33
kubectl create configmap njs-modules --from-file=../internal/nginx/modules/src/httpmatches.js -n nginx-gateway
@@ -48,7 +48,7 @@ run-conformance-tests: update-test-kind-config ## Run conformance tests
48
48
49
49
.PHONY : uninstall-nkg
50
50
uninstall-nkg : # # Uninstall NKG on configured kind cluster
51
- kubectl delete -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v0.7.0 /standard-install.yaml
51
+ kubectl delete -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v0.7.1 /standard-install.yaml
52
52
kubectl delete -f ../deploy/manifests/rbac.yaml
53
53
kubectl delete -f ../deploy/manifests/namespace.yaml
54
54
kubectl delete clusterrole nginx-gateway-provisioner
Original file line number Diff line number Diff line change @@ -20,7 +20,7 @@ This guide walks you through how to install NGINX Kubernetes Gateway on a generi
20
20
1 . Install the Gateway API resources from the standard channel (the CRDs and the validating webhook):
21
21
22
22
```
23
- kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v0.7.0 /standard-install.yaml
23
+ kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/v0.7.1 /standard-install.yaml
24
24
```
25
25
26
26
1 . Create the nginx-gateway Namespace:
Original file line number Diff line number Diff line change @@ -145,10 +145,10 @@ func NewChangeProcessorImpl(cfg ChangeProcessorConfig) *ChangeProcessorImpl {
145
145
146
146
var err error
147
147
switch o := obj .(type ) {
148
- // We don't validate GatewayClass, because as of 0.7.0 , the webhook doesn't validate it (it only
148
+ // We don't validate GatewayClass, because as of 0.7.1 , the webhook doesn't validate it (it only
149
149
// validates an update that requires the previous version of the resource,
150
150
// which NKG cannot reliably provide - for example, after NKG restarts).
151
- // https://github.com/kubernetes-sigs/gateway-api/blob/v0.7.0 /apis/v1beta1/validation/gatewayclass.go#L28
151
+ // https://github.com/kubernetes-sigs/gateway-api/blob/v0.7.1 /apis/v1beta1/validation/gatewayclass.go#L28
152
152
case * v1beta1.Gateway :
153
153
err = gwapivalidation .ValidateGateway (o ).ToAggregate ()
154
154
case * v1beta1.HTTPRoute :
You can’t perform that action at this time.
0 commit comments