Skip to content

Commit 3097a2e

Browse files
author
Kate Osborn
committed
Update references to 0.7.0 to 0.7.1
1 parent 379401b commit 3097a2e

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ The following table lists the software versions NGINX Kubernetes Gateway support
4646

4747
| NGINX Kubernetes Gateway | Gateway API | Kubernetes | NGINX OSS |
4848
|-|-|-|-|
49-
| Edge | 0.7.0 | 1.21+ | 1.25.x *|
49+
| Edge | 0.7.1 | 1.21+ | 1.25.x *|
5050
| 0.3.0 | 0.6.2 | 1.21+ | 1.23.x *|
5151
| 0.2.0 | 0.5.1 | 1.21+ | 1.21.x *|
5252
| 0.1.0 | 0.5.0 | 1.19+ | 1.21.3 |

cmd/gateway/validation.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import (
1313

1414
const (
1515
// 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
1717
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
1818
)
1919

conformance/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ prepare-nkg: ## Build and load NKG container on configured kind cluster
2727

2828
.PHONY: install-nkg
2929
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
3131
kubectl wait --for=condition=available --timeout=60s deployment gateway-api-admission-server -n gateway-system
3232
kubectl apply -f ../deploy/manifests/namespace.yaml
3333
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
4848

4949
.PHONY: uninstall-nkg
5050
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
5252
kubectl delete -f ../deploy/manifests/rbac.yaml
5353
kubectl delete -f ../deploy/manifests/namespace.yaml
5454
kubectl delete clusterrole nginx-gateway-provisioner

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This guide walks you through how to install NGINX Kubernetes Gateway on a generi
2020
1. Install the Gateway API resources from the standard channel (the CRDs and the validating webhook):
2121

2222
```
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
2424
```
2525

2626
1. Create the nginx-gateway Namespace:

internal/state/change_processor.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -145,10 +145,10 @@ func NewChangeProcessorImpl(cfg ChangeProcessorConfig) *ChangeProcessorImpl {
145145

146146
var err error
147147
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
149149
// validates an update that requires the previous version of the resource,
150150
// 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
152152
case *v1beta1.Gateway:
153153
err = gwapivalidation.ValidateGateway(o).ToAggregate()
154154
case *v1beta1.HTTPRoute:

0 commit comments

Comments
 (0)