File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed
internal/nginx/modules/src Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,7 @@ The following table lists the software versions NGINX Kubernetes Gateway support
43
43
44
44
| NGINX Kubernetes Gateway | Gateway API | Kubernetes | NGINX OSS |
45
45
| -| -| -| -|
46
- | Edge | 0.5.1 | 1.21+ | 1.21.x *|
46
+ | Edge | 0.6.0 | 1.21+ | 1.21.x *|
47
47
| 0.2.0 | 0.5.1 | 1.21+ | 1.21.x *|
48
48
| 0.1.0 | 0.5.0 | 1.19+ | 1.21.3 |
49
49
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ import (
17
17
const (
18
18
errTmpl = "failed validation - flag: '--%s' reason: '%s'\n "
19
19
// nolint:lll
20
- // Regex from: https://github.com/kubernetes-sigs/gateway-api/blob/547122f7f55ac0464685552898c560658fb40073 /apis/v1alpha2 /shared_types.go#L462
20
+ // Regex from: https://github.com/kubernetes-sigs/gateway-api/blob/e9e04e498c566021c9d30ce4dbe0863894c7d7e1 /apis/v1beta1 /shared_types.go#L494
21
21
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
22
22
)
23
23
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 CRDs:
21
21
22
22
```
23
- kubectl apply -k "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v0.5.1 "
23
+ kubectl apply -k "github.com/kubernetes-sigs/gateway-api/config/crd?ref=v0.6.0 "
24
24
```
25
25
26
26
1 . Create the nginx-gateway Namespace:
Original file line number Diff line number Diff line change @@ -166,7 +166,7 @@ function paramsMatch(requestParams, params) {
166
166
// (1) if the index is -1, then there are no "=" in the string (e.g. "keyvalue")
167
167
// (2) if the index is 0, then there is no value in the string (e.g. "key=").
168
168
// NOTE: While query parameter values are permitted to be empty, the Gateway API Spec forces the value to be a non-empty string.
169
- // https://github.com/kubernetes-sigs/gateway-api/blob/50e61865db9659111582080daa5ca1a91bbe265d /apis/v1alpha2 /httproute_types.go#L375
169
+ // https://github.com/kubernetes-sigs/gateway-api/blob/e9e04e498c566021c9d30ce4dbe0863894c7d7e1 /apis/v1beta1 /httproute_types.go#L419
170
170
// (3) if the index is equal to length -1, then there is no key in the string (e.g. "=value").
171
171
if ( idx === - 1 || ( idx === 0 ) | ( idx === p . length - 1 ) ) {
172
172
throw Error ( `invalid query parameter: ${ p } ` ) ;
You can’t perform that action at this time.
0 commit comments