Skip to content

Commit ee98ac4

Browse files
authored
Release 0.5.0 (#866)
Add changelog and update manifests and documentation for the release.
1 parent 493cc68 commit ee98ac4

File tree

8 files changed

+39
-12
lines changed

8 files changed

+39
-12
lines changed

CHANGELOG.md

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,32 @@
22

33
This document includes a curated changelog for each release. We also publish a changelog as the description of a [GitHub release](https://github.com/nginxinc/nginx-kubernetes-gateway/releases), which, by contrast, is auto-generated and includes links to all PRs that went into the release.
44

5+
## Release 0.5.0
6+
7+
*July 17, 2023*
8+
9+
This release completes all v1beta1 Core features of the Gateway API resources. See the [Gateway Compatibility doc](https://github.com/nginxinc/nginx-kubernetes-gateway/blob/v0.5.0/docs/gateway-api-compatibility.md)
10+
11+
FEATURES:
12+
* Support cross-namespace BackendRefs in HTTPRoutes. [PR-806](https://github.com/nginxinc/nginx-kubernetes-gateway/pull/806)
13+
* Support dynamic certificate rotation with Kubernetes Secrets. [PR-807](https://github.com/nginxinc/nginx-kubernetes-gateway/pull/807)
14+
* Support SupportedKinds in ListenerStatus. [PR-809](https://github.com/nginxinc/nginx-kubernetes-gateway/pull/809)
15+
16+
BUG FIXES:
17+
* Set redirect port in location header according to the scheme. [PR-801](https://github.com/nginxinc/nginx-kubernetes-gateway/pull/801)
18+
* Set proxy host header to the exact value of the request host header. [PR-827](https://github.com/nginxinc/nginx-kubernetes-gateway/pull/827)
19+
* Ensure Prefix matching requires trailing slash. [PR-817](https://github.com/nginxinc/nginx-kubernetes-gateway/pull/817)
20+
21+
COMPATIBILITY:
22+
- The Gateway API version: `0.7.1`
23+
- NGINX version: `1.25.x` *
24+
- Kubernetes version: `1.21+`
25+
26+
\*the installation manifests use the `nginx:1.25` image, which always points to the latest version of 1.25.x releases.
27+
28+
CONTAINER IMAGES:
29+
- Control plane: `ghcr.io/nginxinc/nginx-kubernetes-gateway:0.5.0`
30+
531
## Release 0.4.0
632

733
*July 6, 2023*

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# variables that should not be overridden by the user
2-
VERSION = edge
2+
VERSION = 0.5.0
33
GIT_COMMIT = $(shell git rev-parse HEAD || echo "unknown")
44
DATE = $(shell date -u +"%Y-%m-%dT%H:%M:%SZ")
55

README.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Learn about our [design principles](/docs/developer/design-principles.md) and [a
2222

2323
We publish NGINX Kubernetes Gateway releases on GitHub. See our [releases page](https://github.com/nginxinc/nginx-kubernetes-gateway/releases).
2424

25-
The latest release is [0.4.0](https://github.com/nginxinc/kubernetes-ingress/releases/tag/v0.4.0).
25+
The latest release is [0.5.0](https://github.com/nginxinc/kubernetes-ingress/releases/tag/v0.5.0).
2626

2727
The edge version is useful for experimenting with new features that are not yet published in a release. To use, choose the *edge* version built from the [latest commit](https://github.com/nginxinc/nginx-kubernetes-gateway/commits/main) from the main branch.
2828

@@ -37,7 +37,7 @@ The table below summarizes the options regarding the images, manifests, document
3737

3838
| Version | Description | Image | Installation Manifests | Documentation and Examples |
3939
|-|-|-|-|-|
40-
| Latest release | For experimental use | Use the 0.4.0 image from [GitHub](https://github.com/nginxinc/nginx-kubernetes-gateway/pkgs/container/nginx-kubernetes-gateway) | [Manifests](https://github.com/nginxinc/nginx-kubernetes-gateway/tree/v0.4.0/deploy). | [Documentation](https://github.com/nginxinc/nginx-kubernetes-gateway/tree/v0.4.0/docs). [Examples](https://github.com/nginxinc/nginx-kubernetes-gateway/tree/v0.4.0/examples). |
40+
| Latest release | For experimental use | Use the 0.5.0 image from [GitHub](https://github.com/nginxinc/nginx-kubernetes-gateway/pkgs/container/nginx-kubernetes-gateway) | [Manifests](https://github.com/nginxinc/nginx-kubernetes-gateway/tree/v0.5.0/deploy). | [Documentation](https://github.com/nginxinc/nginx-kubernetes-gateway/tree/v0.5.0/docs). [Examples](https://github.com/nginxinc/nginx-kubernetes-gateway/tree/v0.5.0/examples). |
4141
| Edge| For experimental use and latest features | Use the edge image from [GitHub](https://github.com/nginxinc/nginx-kubernetes-gateway/pkgs/container/nginx-kubernetes-gateway) | [Manifests](https://github.com/nginxinc/nginx-kubernetes-gateway/tree/main/deploy). | [Documentation](https://github.com/nginxinc/nginx-kubernetes-gateway/tree/main/docs). [Examples](https://github.com/nginxinc/nginx-kubernetes-gateway/tree/main/examples). |
4242

4343
## Technical Specifications
@@ -47,6 +47,7 @@ The following table lists the software versions NGINX Kubernetes Gateway support
4747
| NGINX Kubernetes Gateway | Gateway API | Kubernetes | NGINX OSS |
4848
|-|-|-|-|
4949
| Edge | 0.7.1 | 1.21+ | 1.25.x *|
50+
| 0.5.0 | 0.7.1 | 1.21+ | 1.25.x *|
5051
| 0.4.0 | 0.7.1 | 1.21+ | 1.25.x *|
5152
| 0.3.0 | 0.6.2 | 1.21+ | 1.23.x *|
5253
| 0.2.0 | 0.5.1 | 1.21+ | 1.21.x *|

conformance/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
NKG_TAG = edge
1+
NKG_TAG = 0.5.0
22
NKG_PREFIX = nginx-kubernetes-gateway
33
GATEWAY_CLASS = nginx
44
SUPPORTED_FEATURES = HTTPRoute,HTTPRouteQueryParamMatching,HTTPRouteMethodMatching,HTTPRoutePortRedirect,HTTPRouteSchemeRedirect,GatewayClassObservedGenerationBump

conformance/provisioner/provisioner.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,8 @@ spec:
6161
spec:
6262
serviceAccountName: nginx-gateway-provisioner
6363
containers:
64-
- image: ghcr.io/nginxinc/nginx-kubernetes-gateway:edge
65-
imagePullPolicy: Always
64+
- image: ghcr.io/nginxinc/nginx-kubernetes-gateway:0.5.0
65+
imagePullPolicy: IfNotPresent
6666
name: nginx-gateway-provisioner
6767
securityContext:
6868
runAsUser: 1001

deploy/manifests/deployment.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ spec:
3434
- name: nginx
3535
mountPath: /etc/nginx
3636
containers:
37-
- image: ghcr.io/nginxinc/nginx-kubernetes-gateway:edge
38-
imagePullPolicy: Always
37+
- image: ghcr.io/nginxinc/nginx-kubernetes-gateway:0.5.0
38+
imagePullPolicy: IfNotPresent
3939
name: nginx-gateway
4040
volumeMounts:
4141
- name: nginx

docs/building-the-image.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Before you can build the NGINX Kubernetes Gateway, make sure you have the follow
1212
1. Clone the repo and change into the `nginx-kubernetes-gateway` directory:
1313

1414
```
15-
git clone https://github.com/nginxinc/nginx-kubernetes-gateway.git
15+
git clone https://github.com/nginxinc/nginx-kubernetes-gateway.git --branch v0.5.0
1616
cd nginx-kubernetes-gateway
1717
```
1818

@@ -22,12 +22,12 @@ Before you can build the NGINX Kubernetes Gateway, make sure you have the follow
2222
make PREFIX=myregistry.example.com/nginx-kubernetes-gateway container
2323
```
2424

25-
Set the `PREFIX` variable to the name of the registry you'd like to push the image to. By default, the image will be named `nginx-kubernetes-gateway:edge`.
25+
Set the `PREFIX` variable to the name of the registry you'd like to push the image to. By default, the image will be named `nginx-kubernetes-gateway:0.5.0`.
2626

2727
1. Push the image to your container registry:
2828

2929
```
30-
docker push myregistry.example.com/nginx-kubernetes-gateway:edge
30+
docker push myregistry.example.com/nginx-kubernetes-gateway:0.5.0
3131
```
3232

3333
Make sure to substitute `myregistry.example.com/nginx-kubernetes-gateway` with your registry.

docs/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ This guide walks you through how to install NGINX Kubernetes Gateway on a generi
1313
1. Clone the repo and change into the `nginx-kubernetes-gateway` directory:
1414

1515
```
16-
git clone https://github.com/nginxinc/nginx-kubernetes-gateway.git
16+
git clone https://github.com/nginxinc/nginx-kubernetes-gateway.git --branch v0.5.0
1717
cd nginx-kubernetes-gateway
1818
```
1919

0 commit comments

Comments
 (0)