Skip to content

Commit 5de8345

Browse files
committed
Release 2.0.1
1 parent ee7b2d8 commit 5de8345

File tree

16 files changed

+191
-161
lines changed

16 files changed

+191
-161
lines changed

CHANGELOG.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,35 @@ 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 2.0.1
8+
9+
_June 11, 2025_
10+
11+
Bug Fixes:
12+
13+
- Set proper IP family policy on NGINX LB Service. [3475](https://github.com/nginx/nginx-gateway-fabric/pull/3475).
14+
15+
HELM CHART:
16+
17+
- The version of the Helm chart is now 2.0.1.
18+
- Add support to configure `cert-generator` job pod placement. [3493](https://github.com/nginx/nginx-gateway-fabric/pull/3493). Thanks to [Baburciu](https://github.com/baburciu).
19+
- Add support for configuring the `ttlSecondsAfterFinished` field for the cert-generator job. The default is set to 30s. [3487](https://github.com/nginx/nginx-gateway-fabric/pull/3487). Thanks to [Ab-andresc](https://github.com/ab-andresc).
20+
- Adds support for all additional labels for the control plane service. [3499](https://github.com/nginx/nginx-gateway-fabric/pull/3499). Thanks to [MichasHL](https://github.com/michasHL).
21+
22+
COMPATIBILITY:
23+
24+
- Gateway API version: `1.3.0`
25+
- NGINX version: `1.28.0`
26+
- NGINX Plus version: `R34`
27+
- NGINX Agent version: `v3.0.1`
28+
- Kubernetes version: `1.25+`
29+
30+
CONTAINER IMAGES:
31+
32+
- Control plane: `ghcr.io/nginx/nginx-gateway-fabric:2.0.1`
33+
- Data plane: `ghcr.io/nginx/nginx-gateway-fabric/nginx:2.0.1`
34+
- Data plane with NGINX Plus: `private-registry.nginx.com/nginx-gateway-fabric/nginx-plus:2.0.1`
35+
736
## Release 2.0.0
837

938
_June 5, 2025_

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 = 2.0.0
2+
VERSION = 2.0.1
33
SELF_DIR := $(dir $(abspath $(lastword $(MAKEFILE_LIST))))
44
CHART_DIR = $(SELF_DIR)charts/nginx-gateway-fabric
55
NGINX_CONF_DIR = internal/controller/nginx/conf

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ You can find the comprehensive NGINX Gateway Fabric user documentation on the [N
3636
We publish NGINX Gateway Fabric releases on GitHub. See
3737
our [releases page](https://github.com/nginx/nginx-gateway-fabric/releases).
3838

39-
The latest release is [2.0.0](https://github.com/nginx/nginx-gateway-fabric/releases/tag/v2.0.0).
39+
The latest release is [2.0.1](https://github.com/nginx/nginx-gateway-fabric/releases/tag/v2.0.1).
4040

4141
The edge version is useful for experimenting with new features that are not yet published in a release. To use, choose
4242
the _edge_ version built from the [latest commit](https://github.com/nginx/nginx-gateway-fabric/commits/main)
@@ -47,7 +47,7 @@ to the correct versions:
4747

4848
| Version | Description | Installation Manifests | Documentation and Examples |
4949
|----------------|------------------------------------------|--------------------------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------------------------------------------------|
50-
| Latest release | For production use | [Manifests](https://github.com/nginx/nginx-gateway-fabric/tree/v2.0.0/deploy). | [Documentation](https://docs.nginx.com/nginx-gateway-fabric). [Examples](https://github.com/nginx/nginx-gateway-fabric/tree/v2.0.0/examples). |
50+
| Latest release | For production use | [Manifests](https://github.com/nginx/nginx-gateway-fabric/tree/v2.0.1/deploy). | [Documentation](https://docs.nginx.com/nginx-gateway-fabric). [Examples](https://github.com/nginx/nginx-gateway-fabric/tree/v2.0.1/examples). |
5151
| Edge | For experimental use and latest features | [Manifests](https://github.com/nginx/nginx-gateway-fabric/tree/main/deploy). | [Examples](https://github.com/nginx/nginx-gateway-fabric/tree/main/examples). |
5252

5353
### Versioning
@@ -68,7 +68,8 @@ The following table lists the software versions NGINX Gateway Fabric supports.
6868

6969
| NGINX Gateway Fabric | Gateway API | Kubernetes | NGINX OSS | NGINX Plus | NGINX Agent |
7070
|----------------------|-------------|------------|-----------|------------|-------------|
71-
| Edge | 1.3.0 | 1.25+ | 1.28.0 | R34 | v3.0.0 |
71+
| Edge | 1.3.0 | 1.25+ | 1.28.0 | R34 | v3.0.1 |
72+
| 2.0.1 | 1.3.0 | 1.25+ | 1.28.0 | R34 | v3.0.1 |
7273
| 2.0.0 | 1.3.0 | 1.25+ | 1.28.0 | R34 | v3.0.0 |
7374
| 1.6.2 | 1.2.1 | 1.25+ | 1.27.4 | R33 | --- |
7475
| 1.6.1 | 1.2.1 | 1.25+ | 1.27.4 | R33 | --- |

charts/nginx-gateway-fabric/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ apiVersion: v2
22
name: nginx-gateway-fabric
33
description: NGINX Gateway Fabric
44
type: application
5-
version: 2.0.0
6-
appVersion: "2.0.0"
5+
version: 2.0.1
6+
appVersion: "2.0.1"
77
kubeVersion: ">= 1.25.0-0"
88
home: https://github.com/nginx/nginx-gateway-fabric
99
icon: https://raw.githubusercontent.com/nginx/nginx-gateway-fabric/main/charts/nginx-gateway-fabric/chart-icon.png

charts/nginx-gateway-fabric/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
# NGINX Gateway Fabric Helm Chart
33

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

66
- [NGINX Gateway Fabric Helm Chart](#nginx-gateway-fabric-helm-chart)
77
- [Introduction](#introduction)
@@ -264,7 +264,7 @@ The following table lists the configurable parameters of the NGINX Gateway Fabri
264264
| `certGenerator.ttlSecondsAfterFinished` | How long to wait after the cert generator job has finished before it is removed by the job controller. | int | `30` |
265265
| `clusterDomain` | The DNS cluster domain of your Kubernetes cluster. | string | `"cluster.local"` |
266266
| `gateways` | A list of Gateway objects. View https://gateway-api.sigs.k8s.io/reference/spec/#gateway for full Gateway reference. | list | `[]` |
267-
| `nginx` | The nginx section contains the configuration for all NGINX data plane deployments installed by the NGINX Gateway Fabric control plane. | object | `{"config":{},"container":{},"debug":false,"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric/nginx","tag":"2.0.0"},"imagePullSecret":"","imagePullSecrets":[],"kind":"deployment","plus":false,"pod":{},"replicas":1,"service":{"externalTrafficPolicy":"Local","loadBalancerClass":"","loadBalancerIP":"","loadBalancerSourceRanges":[],"nodePorts":[],"type":"LoadBalancer"},"usage":{"caSecretName":"","clientSSLSecretName":"","endpoint":"","resolver":"","secretName":"nplus-license","skipVerify":false}}` |
267+
| `nginx` | The nginx section contains the configuration for all NGINX data plane deployments installed by the NGINX Gateway Fabric control plane. | object | `{"config":{},"container":{},"debug":false,"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric/nginx","tag":"2.0.1"},"imagePullSecret":"","imagePullSecrets":[],"kind":"deployment","plus":false,"pod":{},"replicas":1,"service":{"externalTrafficPolicy":"Local","loadBalancerClass":"","loadBalancerIP":"","loadBalancerSourceRanges":[],"nodePorts":[],"type":"LoadBalancer"},"usage":{"caSecretName":"","clientSSLSecretName":"","endpoint":"","resolver":"","secretName":"nplus-license","skipVerify":false}}` |
268268
| `nginx.config` | The configuration for the data plane that is contained in the NginxProxy resource. This is applied globally to all Gateways managed by this instance of NGINX Gateway Fabric. | object | `{}` |
269269
| `nginx.container` | The container configuration for the NGINX container. This is applied globally to all Gateways managed by this instance of NGINX Gateway Fabric. | object | `{}` |
270270
| `nginx.debug` | Enable debugging for NGINX. Uses the nginx-debug binary. The NGINX error log level should be set to debug in the NginxProxy resource. | bool | `false` |
@@ -288,7 +288,7 @@ The following table lists the configurable parameters of the NGINX Gateway Fabri
288288
| `nginx.usage.resolver` | The nameserver used to resolve the NGINX Plus usage reporting endpoint. Used with NGINX Instance Manager. | string | `""` |
289289
| `nginx.usage.secretName` | The name of the Secret containing the JWT for NGINX Plus usage reporting. Must exist in the same namespace that the NGINX Gateway Fabric control plane is running in (default namespace: nginx-gateway). | string | `"nplus-license"` |
290290
| `nginx.usage.skipVerify` | Disable client verification of the NGINX Plus usage reporting server certificate. | bool | `false` |
291-
| `nginxGateway` | The nginxGateway section contains configuration for the NGINX Gateway Fabric control plane deployment. | object | `{"affinity":{},"config":{"logging":{"level":"info"}},"configAnnotations":{},"extraVolumeMounts":[],"extraVolumes":[],"gatewayClassAnnotations":{},"gatewayClassName":"nginx","gatewayControllerName":"gateway.nginx.org/nginx-gateway-controller","gwAPIExperimentalFeatures":{"enable":false},"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric","tag":"2.0.0"},"kind":"deployment","labels":{},"leaderElection":{"enable":true,"lockName":""},"lifecycle":{},"metrics":{"enable":true,"port":9113,"secure":false},"nodeSelector":{},"podAnnotations":{},"productTelemetry":{"enable":true},"readinessProbe":{"enable":true,"initialDelaySeconds":3,"port":8081},"replicas":1,"resources":{},"service":{"annotations":{},"labels":{}},"serviceAccount":{"annotations":{},"imagePullSecret":"","imagePullSecrets":[],"name":""},"snippetsFilters":{"enable":false},"terminationGracePeriodSeconds":30,"tolerations":[],"topologySpreadConstraints":[]}` |
291+
| `nginxGateway` | The nginxGateway section contains configuration for the NGINX Gateway Fabric control plane deployment. | object | `{"affinity":{},"config":{"logging":{"level":"info"}},"configAnnotations":{},"extraVolumeMounts":[],"extraVolumes":[],"gatewayClassAnnotations":{},"gatewayClassName":"nginx","gatewayControllerName":"gateway.nginx.org/nginx-gateway-controller","gwAPIExperimentalFeatures":{"enable":false},"image":{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric","tag":"2.0.1"},"kind":"deployment","labels":{},"leaderElection":{"enable":true,"lockName":""},"lifecycle":{},"metrics":{"enable":true,"port":9113,"secure":false},"nodeSelector":{},"podAnnotations":{},"productTelemetry":{"enable":true},"readinessProbe":{"enable":true,"initialDelaySeconds":3,"port":8081},"replicas":1,"resources":{},"service":{"annotations":{},"labels":{}},"serviceAccount":{"annotations":{},"imagePullSecret":"","imagePullSecrets":[],"name":""},"snippetsFilters":{"enable":false},"terminationGracePeriodSeconds":30,"tolerations":[],"topologySpreadConstraints":[]}` |
292292
| `nginxGateway.affinity` | The affinity of the NGINX Gateway Fabric control plane pod. | object | `{}` |
293293
| `nginxGateway.config.logging.level` | Log level. | string | `"info"` |
294294
| `nginxGateway.configAnnotations` | Set of custom annotations for NginxGateway objects. | object | `{}` |
@@ -298,7 +298,7 @@ The following table lists the configurable parameters of the NGINX Gateway Fabri
298298
| `nginxGateway.gatewayClassName` | The name of the GatewayClass that will be created as part of this release. Every NGINX Gateway Fabric must have a unique corresponding GatewayClass resource. NGINX Gateway Fabric only processes resources that belong to its class - i.e. have the "gatewayClassName" field resource equal to the class. | string | `"nginx"` |
299299
| `nginxGateway.gatewayControllerName` | The name of the Gateway controller. The controller name must be of the form: DOMAIN/PATH. The controller's domain is gateway.nginx.org. | string | `"gateway.nginx.org/nginx-gateway-controller"` |
300300
| `nginxGateway.gwAPIExperimentalFeatures.enable` | Enable the experimental features of Gateway API which are supported by NGINX Gateway Fabric. Requires the Gateway APIs installed from the experimental channel. | bool | `false` |
301-
| `nginxGateway.image` | The image configuration for the NGINX Gateway Fabric control plane. | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric","tag":"2.0.0"}` |
301+
| `nginxGateway.image` | The image configuration for the NGINX Gateway Fabric control plane. | object | `{"pullPolicy":"IfNotPresent","repository":"ghcr.io/nginx/nginx-gateway-fabric","tag":"2.0.1"}` |
302302
| `nginxGateway.image.repository` | The NGINX Gateway Fabric image to use | string | `"ghcr.io/nginx/nginx-gateway-fabric"` |
303303
| `nginxGateway.kind` | The kind of the NGINX Gateway Fabric installation - currently, only deployment is supported. | string | `"deployment"` |
304304
| `nginxGateway.labels` | Set of labels to be added for NGINX Gateway Fabric deployment. | object | `{}` |

charts/nginx-gateway-fabric/values.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -344,7 +344,7 @@
344344
"type": "string"
345345
},
346346
"tag": {
347-
"default": "2.0.0",
347+
"default": "2.0.1",
348348
"required": [],
349349
"title": "tag",
350350
"type": "string"
@@ -645,7 +645,7 @@
645645
"type": "string"
646646
},
647647
"tag": {
648-
"default": "2.0.0",
648+
"default": "2.0.1",
649649
"required": [],
650650
"title": "tag",
651651
"type": "string"

charts/nginx-gateway-fabric/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ nginxGateway:
115115
image:
116116
# -- The NGINX Gateway Fabric image to use
117117
repository: ghcr.io/nginx/nginx-gateway-fabric
118-
tag: 2.0.0
118+
tag: 2.0.1
119119
# @schema
120120
# enum:
121121
# - Always
@@ -199,7 +199,7 @@ nginx:
199199
image:
200200
# -- The NGINX image to use.
201201
repository: ghcr.io/nginx/nginx-gateway-fabric/nginx
202-
tag: 2.0.0
202+
tag: 2.0.1
203203
# @schema
204204
# enum:
205205
# - Always

deploy/azure/deploy.yaml

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ metadata:
99
labels:
1010
app.kubernetes.io/instance: nginx-gateway
1111
app.kubernetes.io/name: nginx-gateway
12-
app.kubernetes.io/version: 2.0.0
12+
app.kubernetes.io/version: 2.0.1
1313
name: nginx-gateway
1414
namespace: nginx-gateway
1515
---
@@ -19,7 +19,7 @@ metadata:
1919
labels:
2020
app.kubernetes.io/instance: nginx-gateway
2121
app.kubernetes.io/name: nginx-gateway
22-
app.kubernetes.io/version: 2.0.0
22+
app.kubernetes.io/version: 2.0.1
2323
name: nginx-gateway-cert-generator
2424
namespace: nginx-gateway
2525
---
@@ -29,7 +29,7 @@ metadata:
2929
labels:
3030
app.kubernetes.io/instance: nginx-gateway
3131
app.kubernetes.io/name: nginx-gateway
32-
app.kubernetes.io/version: 2.0.0
32+
app.kubernetes.io/version: 2.0.1
3333
name: nginx-gateway-cert-generator
3434
namespace: nginx-gateway
3535
rules:
@@ -48,7 +48,7 @@ metadata:
4848
labels:
4949
app.kubernetes.io/instance: nginx-gateway
5050
app.kubernetes.io/name: nginx-gateway
51-
app.kubernetes.io/version: 2.0.0
51+
app.kubernetes.io/version: 2.0.1
5252
name: nginx-gateway
5353
rules:
5454
- apiGroups:
@@ -179,7 +179,7 @@ metadata:
179179
labels:
180180
app.kubernetes.io/instance: nginx-gateway
181181
app.kubernetes.io/name: nginx-gateway
182-
app.kubernetes.io/version: 2.0.0
182+
app.kubernetes.io/version: 2.0.1
183183
name: nginx-gateway-cert-generator
184184
namespace: nginx-gateway
185185
roleRef:
@@ -197,7 +197,7 @@ metadata:
197197
labels:
198198
app.kubernetes.io/instance: nginx-gateway
199199
app.kubernetes.io/name: nginx-gateway
200-
app.kubernetes.io/version: 2.0.0
200+
app.kubernetes.io/version: 2.0.1
201201
name: nginx-gateway
202202
roleRef:
203203
apiGroup: rbac.authorization.k8s.io
@@ -214,7 +214,7 @@ metadata:
214214
labels:
215215
app.kubernetes.io/instance: nginx-gateway
216216
app.kubernetes.io/name: nginx-gateway
217-
app.kubernetes.io/version: 2.0.0
217+
app.kubernetes.io/version: 2.0.1
218218
name: nginx-gateway
219219
namespace: nginx-gateway
220220
spec:
@@ -234,7 +234,7 @@ metadata:
234234
labels:
235235
app.kubernetes.io/instance: nginx-gateway
236236
app.kubernetes.io/name: nginx-gateway
237-
app.kubernetes.io/version: 2.0.0
237+
app.kubernetes.io/version: 2.0.1
238238
name: nginx-gateway
239239
namespace: nginx-gateway
240240
spec:
@@ -281,8 +281,8 @@ spec:
281281
fieldRef:
282282
fieldPath: metadata.labels['app.kubernetes.io/instance']
283283
- name: IMAGE_NAME
284-
value: ghcr.io/nginx/nginx-gateway-fabric:2.0.0
285-
image: ghcr.io/nginx/nginx-gateway-fabric:2.0.0
284+
value: ghcr.io/nginx/nginx-gateway-fabric:2.0.1
285+
image: ghcr.io/nginx/nginx-gateway-fabric:2.0.1
286286
imagePullPolicy: IfNotPresent
287287
name: nginx-gateway
288288
ports:
@@ -329,7 +329,7 @@ metadata:
329329
labels:
330330
app.kubernetes.io/instance: nginx-gateway
331331
app.kubernetes.io/name: nginx-gateway
332-
app.kubernetes.io/version: 2.0.0
332+
app.kubernetes.io/version: 2.0.1
333333
name: nginx-gateway-cert-generator
334334
namespace: nginx-gateway
335335
spec:
@@ -349,7 +349,7 @@ spec:
349349
valueFrom:
350350
fieldRef:
351351
fieldPath: metadata.namespace
352-
image: ghcr.io/nginx/nginx-gateway-fabric:2.0.0
352+
image: ghcr.io/nginx/nginx-gateway-fabric:2.0.1
353353
imagePullPolicy: IfNotPresent
354354
name: cert-generator
355355
securityContext:
@@ -375,7 +375,7 @@ metadata:
375375
labels:
376376
app.kubernetes.io/instance: nginx-gateway
377377
app.kubernetes.io/name: nginx-gateway
378-
app.kubernetes.io/version: 2.0.0
378+
app.kubernetes.io/version: 2.0.1
379379
name: nginx
380380
spec:
381381
controllerName: gateway.nginx.org/nginx-gateway-controller
@@ -391,7 +391,7 @@ metadata:
391391
labels:
392392
app.kubernetes.io/instance: nginx-gateway
393393
app.kubernetes.io/name: nginx-gateway
394-
app.kubernetes.io/version: 2.0.0
394+
app.kubernetes.io/version: 2.0.1
395395
name: nginx-gateway-config
396396
namespace: nginx-gateway
397397
spec:
@@ -404,7 +404,7 @@ metadata:
404404
labels:
405405
app.kubernetes.io/instance: nginx-gateway
406406
app.kubernetes.io/name: nginx-gateway
407-
app.kubernetes.io/version: 2.0.0
407+
app.kubernetes.io/version: 2.0.1
408408
name: nginx-gateway-proxy-config
409409
namespace: nginx-gateway
410410
spec:
@@ -414,7 +414,7 @@ spec:
414414
image:
415415
pullPolicy: IfNotPresent
416416
repository: ghcr.io/nginx/nginx-gateway-fabric/nginx
417-
tag: 2.0.0
417+
tag: 2.0.1
418418
pod:
419419
nodeSelector:
420420
kubernetes.io/os: linux

0 commit comments

Comments
 (0)