Skip to content

Commit ec5d7aa

Browse files
bjee19lucacome
authored andcommitted
Update main with 1.6.0 (#3021)
Updates the docs in main with 1.6.0
1 parent 1b549de commit ec5d7aa

20 files changed

+105
-61
lines changed

CHANGELOG.md

+43
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,49 @@ This document includes a curated changelog for each release. We also publish a c
44
a [GitHub release](https://github.com/nginx/nginx-gateway-fabric/releases), which, by contrast, is auto-generated
55
and includes links to all PRs that went into the release.
66

7+
## Release 1.6.0
8+
9+
_January 15, 2025_
10+
11+
FEATURES:
12+
13+
- Add UpstreamSettingsPolicy to allow users to configure upstream settings for Services. [2941](https://github.com/nginx/nginx-gateway-fabric/pull/2941)
14+
- Add path support for RequestRedirect Filter. [2979](https://github.com/nginx/nginx-gateway-fabric/pull/2979)
15+
- Use state files for NGINX Plus upstream servers instead of the NGINX config. [2897](https://github.com/nginx/nginx-gateway-fabric/pull/2897)
16+
17+
BUG FIXES:
18+
19+
- Fix rewrite path for ReplacePrefixMatch to parse request arguments correctly. [2951](https://github.com/nginx/nginx-gateway-fabric/pull/2951)
20+
- Fix an issue where updating upstreams with the NGINX Plus API would not occur if metrics were disabled. [2897](https://github.com/nginx/nginx-gateway-fabric/pull/2897)
21+
- Support updating stream upstreams with the NGINX Plus API instead of reloading NGINX. [2897](https://github.com/nginx/nginx-gateway-fabric/pull/2897)
22+
23+
DOCUMENTATION:
24+
25+
- Docs: Update support referencing support package tool. [2789](https://github.com/nginx/nginx-gateway-fabric/pull/2789). Thanks to [mrajagopal](https://github.com/mrajagopal).
26+
- Add how-to guide for configuring upstream settings for services using the UpstreamSettingsPolicy API. Find it [here](https://docs.nginx.com/nginx-gateway-fabric/how-to/traffic-management/upstream-settings/). [2987](https://github.com/nginx/nginx-gateway-fabric/pull/2987)
27+
28+
HELM CHART:
29+
30+
- The version of the Helm chart is now 1.6.0
31+
32+
UPGRADE:
33+
34+
- The Gateway API version has been updated to 1.2.1. [2868](https://github.com/nginx/nginx-gateway-fabric/pull/2868)
35+
- ObservabilityPolicy API version has been increased to `v1alpha2` due to a strengthening of validation rules. [2998](https://github.com/nginx/nginx-gateway-fabric/pull/2998)
36+
37+
COMPATIBILITY:
38+
39+
- Gateway API version: `1.2.1`
40+
- NGINX version: `1.27.3`
41+
- NGINX Plus version: `R33`
42+
- Kubernetes version: `1.25+`
43+
44+
CONTAINER IMAGES:
45+
46+
- Control plane: `ghcr.io/nginx/nginx-gateway-fabric:1.6.0`
47+
- Data plane: `ghcr.io/nginx/nginx-gateway-fabric/nginx:1.6.0`
48+
- Data plane with NGINX Plus: `private-registry.nginx.com/nginx-gateway-fabric/nginx-plus:1.6.0`
49+
750
## Release 1.5.1
851

952
_December 16, 2024_

README.md

+5-4
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You can find the comprehensive NGINX Gateway Fabric user documentation on the [N
3434
We publish NGINX Gateway Fabric releases on GitHub. See
3535
our [releases page](https://github.com/nginx/nginx-gateway-fabric/releases).
3636

37-
The latest release is [1.5.1](https://github.com/nginx/nginx-gateway-fabric/releases/tag/v1.5.1).
37+
The latest release is [1.6.0](https://github.com/nginx/nginx-gateway-fabric/releases/tag/v1.6.0).
3838

3939
The edge version is useful for experimenting with new features that are not yet published in a release. To use, choose
4040
the _edge_ version built from the [latest commit](https://github.com/nginx/nginx-gateway-fabric/commits/main)
@@ -43,9 +43,9 @@ from the main branch.
4343
The table below summarizes the options regarding the images, manifests, documentation and examples and gives your links
4444
to the correct versions:
4545

46-
| Version | Description | Installation Manifests | Documentation and Examples |
47-
|----------------|------------------------------------------|-----------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------------|
48-
| Latest release | For production use | [Manifests](https://github.com/nginx/nginx-gateway-fabric/tree/v1.5.1/deploy). | [Documentation](https://docs.nginx.com/nginx-gateway-fabric). [Examples](https://github.com/nginx/nginx-gateway-fabric/tree/v1.5.1/examples). |
46+
| Version | Description | Installation Manifests | Documentation and Examples |
47+
|----------------|------------------------------------------|--------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
48+
| Latest release | For production use | [Manifests](https://github.com/nginx/nginx-gateway-fabric/tree/v1.6.0/deploy). | [Documentation](https://docs.nginx.com/nginx-gateway-fabric). [Examples](https://github.com/nginx/nginx-gateway-fabric/tree/v1.6.0/examples). |
4949
| Edge | For experimental use and latest features | [Manifests](https://github.com/nginx/nginx-gateway-fabric/tree/main/deploy). | [Documentation](https://github.com/nginx/nginx-gateway-fabric/tree/main/site/content). [Examples](https://github.com/nginx/nginx-gateway-fabric/tree/main/examples). |
5050

5151
### Versioning
@@ -67,6 +67,7 @@ The following table lists the software versions NGINX Gateway Fabric supports.
6767
| NGINX Gateway Fabric | Gateway API | Kubernetes | NGINX OSS | NGINX Plus |
6868
|----------------------|-------------|------------|-----------|------------|
6969
| Edge | 1.2.1 | 1.25+ | 1.27.3 | R33 |
70+
| 1.6.0 | 1.2.1 | 1.25+ | 1.27.3 | R33 |
7071
| 1.5.1 | 1.2.0 | 1.25+ | 1.27.2 | R33 |
7172
| 1.5.0 | 1.2.0 | 1.25+ | 1.27.2 | R33 |
7273
| 1.4.0 | 1.1.0 | 1.25+ | 1.27.1 | R32 |

charts/nginx-gateway-fabric/Chart.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
name: nginx-gateway-fabric
33
description: NGINX Gateway Fabric
44
type: application
5-
version: 1.5.1
5+
version: 1.6.0
66
appVersion: "edge"
77
kubeVersion: ">= 1.25.0-0"
88
home: https://github.com/nginx/nginx-gateway-fabric

charts/nginx-gateway-fabric/README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# NGINX Gateway Fabric Helm Chart
33

4-
![Version: 1.5.1](https://img.shields.io/badge/Version-1.5.1-informational?style=flat-square) ![AppVersion: edge](https://img.shields.io/badge/AppVersion-edge-informational?style=flat-square)
4+
![Version: 1.6.0](https://img.shields.io/badge/Version-1.6.0-informational?style=flat-square) ![AppVersion: edge](https://img.shields.io/badge/AppVersion-edge-informational?style=flat-square)
55

66
- [NGINX Gateway Fabric Helm Chart](#nginx-gateway-fabric-helm-chart)
77
- [Introduction](#introduction)

site/content/get-started.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ make create-kind-cluster
8888
Use `kubectl` to add the API resources for NGINX Gateway Fabric with the following command:
8989

9090
```shell
91-
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/standard?ref=v1.5.1" | kubectl apply -f -
91+
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/standard?ref=v1.6.0" | kubectl apply -f -
9292
```
9393

9494
```text
@@ -103,7 +103,7 @@ customresourcedefinition.apiextensions.k8s.io/referencegrants.gateway.networking
103103
To use experimental features, you'll need to install the API resources from the experimental channel instead.
104104

105105
```shell
106-
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/experimental?ref=v1.5.1" | kubectl apply -f -
106+
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/experimental?ref=v1.6.0" | kubectl apply -f -
107107
```
108108

109109
{{< /note >}}
@@ -119,7 +119,7 @@ helm install ngf oci://ghcr.io/nginx/charts/nginx-gateway-fabric --create-namesp
119119
```
120120

121121
```text
122-
Pulled: ghcr.io/nginx/charts/nginx-gateway-fabric:1.5.1
122+
Pulled: ghcr.io/nginx/charts/nginx-gateway-fabric:1.6.0
123123
Digest: sha256:9bbd1a2fcbfd5407ad6be39f796f582e6263512f1f3a8969b427d39063cc6fee
124124
NAME: ngf
125125
LAST DEPLOYED: Mon Oct 21 14:45:14 2024
@@ -157,7 +157,7 @@ metadata:
157157
labels:
158158
app.kubernetes.io/name: nginx-gateway-fabric
159159
app.kubernetes.io/instance: ngf
160-
app.kubernetes.io/version: "1.5.1"
160+
app.kubernetes.io/version: "1.6.0"
161161
spec:
162162
type: NodePort
163163
selector:

site/content/how-to/monitoring/prometheus.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -102,11 +102,11 @@ You can configure monitoring metrics for NGINX Gateway Fabric using Helm or Mani
102102

103103
### Using Helm
104104

105-
If you're setting up NGINX Gateway Fabric with Helm, you can adjust the `metrics.*` parameters to fit your needs. For detailed options and instructions, see the [Helm README](https://github.com/nginx/nginx-gateway-fabric/blob/v1.5.1/charts/nginx-gateway-fabric/README.md).
105+
If you're setting up NGINX Gateway Fabric with Helm, you can adjust the `metrics.*` parameters to fit your needs. For detailed options and instructions, see the [Helm README](https://github.com/nginx/nginx-gateway-fabric/blob/v1.6.0/charts/nginx-gateway-fabric/README.md).
106106

107107
### Using Kubernetes manifests
108108

109-
For setups using Kubernetes manifests, change the metrics configuration by editing the NGINX Gateway Fabric manifest that you want to deploy. You can find some examples in the [deploy](https://github.com/nginx/nginx-gateway-fabric/tree/v1.5.1/deploy) directory.
109+
For setups using Kubernetes manifests, change the metrics configuration by editing the NGINX Gateway Fabric manifest that you want to deploy. You can find some examples in the [deploy](https://github.com/nginx/nginx-gateway-fabric/tree/v1.6.0/deploy) directory.
110110

111111
#### Disabling metrics
112112

site/content/how-to/traffic-management/advanced-routing.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ The goal is to create a set of rules that will result in client requests being s
4545
Begin by deploying the `coffee-v1` and `coffee-v2` applications:
4646

4747
```shell
48-
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.5.1/examples/advanced-routing/coffee.yaml
48+
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.6.0/examples/advanced-routing/coffee.yaml
4949
```
5050

5151
---
@@ -173,7 +173,7 @@ Let's deploy a different set of applications now called `tea` and `tea-post`. Th
173173
### Deploy the Tea applications
174174

175175
```shell
176-
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.5.1/examples/advanced-routing/tea.yaml
176+
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.6.0/examples/advanced-routing/tea.yaml
177177
```
178178

179179
---

site/content/how-to/traffic-management/client-settings.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,19 +45,19 @@ For all the possible configuration options for `ClientSettingsPolicy`, see the [
4545
- Create the coffee and tea example applications:
4646

4747
```yaml
48-
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.5.1/examples/client-settings-policy/app.yaml
48+
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.6.0/examples/client-settings-policy/app.yaml
4949
```
5050

5151
- Create a Gateway:
5252

5353
```yaml
54-
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.5.1/examples/client-settings-policy/gateway.yaml
54+
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.6.0/examples/client-settings-policy/gateway.yaml
5555
```
5656

5757
- Create HTTPRoutes for the coffee and tea applications:
5858

5959
```yaml
60-
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.5.1/examples/client-settings-policy/httproutes.yaml
60+
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.6.0/examples/client-settings-policy/httproutes.yaml
6161
```
6262

6363
- Test the configuration:

site/content/how-to/traffic-management/request-response-headers.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ This examples demonstrates how to configure traffic routing for a simple echo se
6767
Begin by deploying the example application `headers`. It is a simple application that returns the request headers which will be modified later.
6868

6969
```shell
70-
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.5.1/examples/http-request-header-filter/headers.yaml
70+
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.6.0/examples/http-request-header-filter/headers.yaml
7171
```
7272

7373
This will create the headers Service and a Deployment with one Pod. Run the following command to verify the resources were created:
@@ -179,7 +179,7 @@ kubectl delete httproutes.gateway.networking.k8s.io headers
179179
```
180180

181181
```shell
182-
kubectl delete -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.5.1/examples/http-request-header-filter/headers.yaml
182+
kubectl delete -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.6.0/examples/http-request-header-filter/headers.yaml
183183
```
184184

185185
## ResponseHeaderModifier example
@@ -191,7 +191,7 @@ Begin by configuring an application with custom headers and a simple HTTPRoute.
191191
Begin by deploying the example application `headers`. It is a simple application that adds response headers that will be modified later.
192192

193193
```shell
194-
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.5.1/examples/http-response-header-filter/headers.yaml
194+
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.6.0/examples/http-response-header-filter/headers.yaml
195195
```
196196

197197
This will create the headers Service and a Deployment with one Pod. Run the following command to verify the resources were created:

site/content/how-to/traffic-management/snippets.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -73,19 +73,19 @@ We have outlined a few best practices to keep in mind when using `SnippetsFilter
7373
- Create the coffee and tea example applications:
7474

7575
```yaml
76-
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.5.1/examples/snippets-filter/app.yaml
76+
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.6.0/examples/snippets-filter/app.yaml
7777
```
7878

7979
- Create a Gateway:
8080

8181
```yaml
82-
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.5.1/examples/snippets-filter/gateway.yaml
82+
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.6.0/examples/snippets-filter/gateway.yaml
8383
```
8484

8585
- Create HTTPRoutes for the coffee and tea applications:
8686

8787
```yaml
88-
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.5.1/examples/snippets-filter/httproutes.yaml
88+
kubectl apply -f https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/v1.6.0/examples/snippets-filter/httproutes.yaml
8989
```
9090

9191
- Test the configuration:

site/content/how-to/traffic-management/upgrade-apps-without-downtime.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ For example, an application can be exposed using a routing rule like below:
6666
port: 80
6767
```
6868
69-
{{< note >}}See the [Cafe example](https://github.com/nginx/nginx-gateway-fabric/tree/v1.5.1/examples/cafe-example) for a basic example.{{< /note >}}
69+
{{< note >}}See the [Cafe example](https://github.com/nginx/nginx-gateway-fabric/tree/v1.6.0/examples/cafe-example) for a basic example.{{< /note >}}
7070
7171
The upgrade methods in the next sections cover:
7272
@@ -137,4 +137,4 @@ By updating the rule you can further increase the share of traffic the new versi
137137
weight: 1
138138
```
139139

140-
See the [Traffic splitting example](https://github.com/nginx/nginx-gateway-fabric/tree/v1.5.1/examples/traffic-splitting) from our repository.
140+
See the [Traffic splitting example](https://github.com/nginx/nginx-gateway-fabric/tree/v1.6.0/examples/traffic-splitting) from our repository.

site/content/includes/installation/install-gateway-api-experimental-features.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ To use Gateway API experimental resources, the Gateway API resources from the ex
1010
To install the Gateway API resources from the experimental channel, run the following:
1111

1212
```shell
13-
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/experimental?ref=v1.5.1" | kubectl apply -f -
13+
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/experimental?ref=v1.6.0" | kubectl apply -f -
1414
```
1515

1616
{{< note >}}If you plan to use the `edge` version of NGINX Gateway Fabric, you can replace the version in `ref` with `main`, for example `ref=main`. {{</ note >}}

site/content/includes/installation/install-gateway-api-resources.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
docs: "DOCS-1438"
33
---
44

5-
{{< note >}} The [Gateway API resources](https://github.com/kubernetes-sigs/gateway-api) from the standard channel must be installed before deploying NGINX Gateway Fabric. If they are already installed in your cluster, please ensure they are the correct version as supported by the NGINX Gateway Fabric - [see the Technical Specifications](https://github.com/nginx/nginx-gateway-fabric/blob/v1.5.1/README.md#technical-specifications). {{</ note >}}
5+
{{< note >}} The [Gateway API resources](https://github.com/kubernetes-sigs/gateway-api) from the standard channel must be installed before deploying NGINX Gateway Fabric. If they are already installed in your cluster, please ensure they are the correct version as supported by the NGINX Gateway Fabric - [see the Technical Specifications](https://github.com/nginx/nginx-gateway-fabric/blob/v1.6.0/README.md#technical-specifications). {{</ note >}}
66

77
To install the Gateway API resources, run the following:
88

99
```shell
10-
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/standard?ref=v1.5.1" | kubectl apply -f -
10+
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/standard?ref=v1.6.0" | kubectl apply -f -
1111
```
1212

1313
{{< note >}}If you plan to use the `edge` version of NGINX Gateway Fabric, you can replace the version in `ref` with `main`, for example `ref=main`.{{</ note >}}
@@ -18,7 +18,7 @@ NGINX Gateway Fabric currently supports a subset of the additional features prov
1818
To install from the experimental channel, run the following:
1919

2020
```shell
21-
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/experimental?ref=v1.5.1" | kubectl apply -f -
21+
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/experimental?ref=v1.6.0" | kubectl apply -f -
2222
```
2323

2424
{{< note >}} To learn more about what Gateway API resources NGINX Gateway Fabric currently supports, visit our [Gateway API Compatibility]({{< relref "overview/gateway-api-compatibility.md" >}}) document. {{</ note >}}

site/content/includes/installation/uninstall-gateway-api-resources.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@ docs: "DOCS-1436"
77
To uninstall the Gateway API resources, run the following:
88

99
```shell
10-
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/standard?ref=v1.5.1" | kubectl delete -f -
10+
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/standard?ref=v1.6.0" | kubectl delete -f -
1111
```
1212

1313
Alternatively, if you installed the Gateway APIs from the experimental channel, run the following:
1414

1515
```shell
16-
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/experimental?ref=v1.5.1" | kubectl delete -f -
16+
kubectl kustomize "https://github.com/nginx/nginx-gateway-fabric/config/crd/gateway-api/experimental?ref=v1.6.0" | kubectl delete -f -
1717
```

0 commit comments

Comments
 (0)