Skip to content

Commit ca02a38

Browse files
authored
Release 3.7.0 (#6480)
1 parent 812c426 commit ca02a38

File tree

16 files changed

+114
-25
lines changed

16 files changed

+114
-25
lines changed

Diff for: README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ In the case of NGINX, the Ingress Controller is deployed in a pod along with the
120120
We publish NGINX Ingress Controller releases on GitHub. See our [releases
121121
page](https://github.com/nginxinc/kubernetes-ingress/releases).
122122

123-
The latest stable release is [3.6.2](https://github.com/nginxinc/kubernetes-ingress/releases/tag/v3.6.2). For production
123+
The latest stable release is [3.7.0](https://github.com/nginxinc/kubernetes-ingress/releases/tag/v3.7.0). For production
124124
use, we recommend that you choose the latest stable release.
125125

126126
The edge version is useful for experimenting with new features that are not yet published in a stable release. To use
@@ -140,7 +140,7 @@ your links to the correct versions:
140140

141141
| Version | Description | Image for NGINX | Image for NGINX Plus | Installation Manifests and Helm Chart | Documentation and Examples |
142142
| ------- | ----------- | --------------- | -------------------- | ---------------------------------------| -------------------------- |
143-
| Latest stable release | For production use | Use the 3.6.2 images from [DockerHub](https://hub.docker.com/r/nginx/nginx-ingress/), [GitHub Container](https://github.com/nginxinc/kubernetes-ingress/pkgs/container/kubernetes-ingress), [Amazon ECR Public Gallery](https://gallery.ecr.aws/nginx/nginx-ingress) or [Quay.io](https://quay.io/repository/nginx/nginx-ingress) or [build your own image](https://docs.nginx.com/nginx-ingress-controller/installation/building-ingress-controller-image/). | Use the 3.6.2 images from the [F5 Container Registry](https://docs.nginx.com/nginx-ingress-controller/installation/pulling-ingress-controller-image/) or the [AWS Marketplace](https://aws.amazon.com/marketplace/search/?CREATOR=741df81b-dfdc-4d36-b8da-945ea66b522c&FULFILLMENT_OPTION_TYPE=CONTAINER&filters=CREATOR%2CFULFILLMENT_OPTION_TYPE) or [Build your own image](https://docs.nginx.com/nginx-ingress-controller/installation/building-nginx-ingress-controller/). | [Manifests](https://github.com/nginxinc/kubernetes-ingress/tree/v3.6.2/deployments). [Helm chart](https://github.com/nginxinc/kubernetes-ingress/tree/v3.6.2/charts/nginx-ingress). | [Documentation](https://docs.nginx.com/nginx-ingress-controller/). [Examples](https://docs.nginx.com/nginx-ingress-controller/configuration/configuration-examples/). |
143+
| Latest stable release | For production use | Use the 3.7.0 images from [DockerHub](https://hub.docker.com/r/nginx/nginx-ingress/), [GitHub Container](https://github.com/nginxinc/kubernetes-ingress/pkgs/container/kubernetes-ingress), [Amazon ECR Public Gallery](https://gallery.ecr.aws/nginx/nginx-ingress) or [Quay.io](https://quay.io/repository/nginx/nginx-ingress) or [build your own image](https://docs.nginx.com/nginx-ingress-controller/installation/building-ingress-controller-image/). | Use the 3.7.0 images from the [F5 Container Registry](https://docs.nginx.com/nginx-ingress-controller/installation/pulling-ingress-controller-image/) or the [AWS Marketplace](https://aws.amazon.com/marketplace/search/?CREATOR=741df81b-dfdc-4d36-b8da-945ea66b522c&FULFILLMENT_OPTION_TYPE=CONTAINER&filters=CREATOR%2CFULFILLMENT_OPTION_TYPE) or [Build your own image](https://docs.nginx.com/nginx-ingress-controller/installation/building-nginx-ingress-controller/). | [Manifests](https://github.com/nginxinc/kubernetes-ingress/tree/v3.7.0/deployments). [Helm chart](https://github.com/nginxinc/kubernetes-ingress/tree/v3.7.0/charts/nginx-ingress). | [Documentation](https://docs.nginx.com/nginx-ingress-controller/). [Examples](https://docs.nginx.com/nginx-ingress-controller/configuration/configuration-examples/). |
144144
| Edge/Nightly | For testing and experimenting | Use the edge or nightly images from [DockerHub](https://hub.docker.com/r/nginx/nginx-ingress/), [GitHub Container](https://github.com/nginxinc/kubernetes-ingress/pkgs/container/kubernetes-ingress), [Amazon ECR Public Gallery](https://gallery.ecr.aws/nginx/nginx-ingress) or [Quay.io](https://quay.io/repository/nginx/nginx-ingress) or [build your own image](https://docs.nginx.com/nginx-ingress-controller/installation/building-nginx-ingress-controller/). | [Build your own image](https://docs.nginx.com/nginx-ingress-controller/installation/building-nginx-ingress-controller/). | [Manifests](https://github.com/nginxinc/kubernetes-ingress/tree/main/deployments). [Helm chart](https://github.com/nginxinc/kubernetes-ingress/tree/main/charts/nginx-ingress). | [Documentation](https://github.com/nginxinc/kubernetes-ingress/tree/main/docs/content). [Examples](https://github.com/nginxinc/kubernetes-ingress/tree/main/examples). |
145145

146146
## SBOM (Software Bill of Materials)

Diff for: charts/nginx-ingress/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,10 +5,10 @@ appVersion: 3.7.0
55
kubeVersion: ">= 1.23.0-0"
66
type: application
77
description: NGINX Ingress Controller
8-
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.6.2/charts/nginx-ingress/chart-icon.png
8+
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.7.0/charts/nginx-ingress/chart-icon.png
99
home: https://github.com/nginxinc/kubernetes-ingress
1010
sources:
11-
- https://github.com/nginxinc/kubernetes-ingress/tree/v3.6.2/charts/nginx-ingress
11+
- https://github.com/nginxinc/kubernetes-ingress/tree/v3.7.0/charts/nginx-ingress
1212
keywords:
1313
- ingress
1414
- nginx

Diff for: charts/nginx-ingress/values-icp.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ controller:
44
nginxplus: true
55
image:
66
repository: mycluster.icp:8500/kube-system/nginx-plus-ingress
7-
tag: "3.6.2"
7+
tag: "3.7.0"
88
nodeSelector:
99
beta.kubernetes.io/arch: "amd64"
1010
proxy: true

Diff for: charts/nginx-ingress/values-plus.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ controller:
33
nginxplus: true
44
image:
55
repository: nginx-plus-ingress
6-
tag: "3.6.2"
6+
tag: "3.7.0"

Diff for: charts/nginx-ingress/values.schema.json

+5-5
Original file line numberDiff line numberDiff line change
@@ -540,10 +540,10 @@
540540
},
541541
"tag": {
542542
"type": "string",
543-
"default": "3.6.2",
543+
"default": "3.7.0",
544544
"title": "The tag of the Ingress Controller image",
545545
"examples": [
546-
"3.6.2"
546+
"3.7.0"
547547
]
548548
},
549549
"digest": {
@@ -580,7 +580,7 @@
580580
"examples": [
581581
{
582582
"repository": "nginx/nginx-ingress",
583-
"tag": "3.6.2",
583+
"tag": "3.7.0",
584584
"pullPolicy": "IfNotPresent"
585585
}
586586
]
@@ -1678,7 +1678,7 @@
16781678
"customPorts": [],
16791679
"image": {
16801680
"repository": "nginx/nginx-ingress",
1681-
"tag": "3.6.2",
1681+
"tag": "3.7.0",
16821682
"digest": "",
16831683
"pullPolicy": "IfNotPresent"
16841684
},
@@ -2218,7 +2218,7 @@
22182218
"customPorts": [],
22192219
"image": {
22202220
"repository": "nginx/nginx-ingress",
2221-
"tag": "3.6.2",
2221+
"tag": "3.7.0",
22222222
"digest": "",
22232223
"pullPolicy": "IfNotPresent"
22242224
},

Diff for: charts/nginx-ingress/values.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ controller:
134134
repository: nginx/nginx-ingress
135135

136136
## The tag of the Ingress Controller image. If not specified the appVersion from Chart.yaml is used as a tag.
137-
# tag: "3.6.2"
137+
# tag: "3.7.0"
138138
## The digest of the Ingress Controller image.
139139
## If digest is specified it has precedence over tag and will be used instead
140140
# digest: "sha256:CHANGEME"

Diff for: deployments/daemon-set/nginx-ingress.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
# - name: nginx-log
3333
# emptyDir: {}
3434
containers:
35-
- image: nginx/nginx-ingress:3.6.2
35+
- image: nginx/nginx-ingress:3.7.0
3636
imagePullPolicy: IfNotPresent
3737
name: nginx-ingress
3838
ports:
@@ -95,7 +95,7 @@ spec:
9595
#- -enable-prometheus-metrics
9696
#- -global-configuration=$(POD_NAMESPACE)/nginx-configuration
9797
# initContainers:
98-
# - image: nginx/nginx-ingress:3.6.2
98+
# - image: nginx/nginx-ingress:3.7.0
9999
# imagePullPolicy: IfNotPresent
100100
# name: init-nginx-ingress
101101
# command: ['cp', '-vdR', '/etc/nginx/.', '/mnt/etc']

Diff for: deployments/daemon-set/nginx-plus-ingress.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ spec:
3232
# - name: nginx-log
3333
# emptyDir: {}
3434
containers:
35-
- image: nginx-plus-ingress:3.6.2
35+
- image: nginx-plus-ingress:3.7.0
3636
imagePullPolicy: IfNotPresent
3737
name: nginx-plus-ingress
3838
ports:
@@ -98,7 +98,7 @@ spec:
9898
#- -enable-prometheus-metrics
9999
#- -global-configuration=$(POD_NAMESPACE)/nginx-configuration
100100
# initContainers:
101-
# - image: nginx/nginx-ingress:3.6.2
101+
# - image: nginx/nginx-ingress:3.7.0
102102
# imagePullPolicy: IfNotPresent
103103
# name: init-nginx-ingress
104104
# command: ['cp', '-vdR', '/etc/nginx/.', '/mnt/etc']

Diff for: deployments/deployment/nginx-ingress.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
# - name: nginx-log
3434
# emptyDir: {}
3535
containers:
36-
- image: nginx/nginx-ingress:3.6.2
36+
- image: nginx/nginx-ingress:3.7.0
3737
imagePullPolicy: IfNotPresent
3838
name: nginx-ingress
3939
ports:
@@ -96,7 +96,7 @@ spec:
9696
#- -enable-prometheus-metrics
9797
#- -global-configuration=$(POD_NAMESPACE)/nginx-configuration
9898
# initContainers:
99-
# - image: nginx/nginx-ingress:3.6.2
99+
# - image: nginx/nginx-ingress:3.7.0
100100
# imagePullPolicy: IfNotPresent
101101
# name: init-nginx-ingress
102102
# command: ['cp', '-vdR', '/etc/nginx/.', '/mnt/etc']

Diff for: deployments/deployment/nginx-plus-ingress.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ spec:
3333
# - name: nginx-log
3434
# emptyDir: {}
3535
containers:
36-
- image: nginx-plus-ingress:3.6.2
36+
- image: nginx-plus-ingress:3.7.0
3737
imagePullPolicy: IfNotPresent
3838
name: nginx-plus-ingress
3939
ports:
@@ -102,7 +102,7 @@ spec:
102102
#- -enable-service-insight
103103
#- -global-configuration=$(POD_NAMESPACE)/nginx-configuration
104104
# initContainers:
105-
# - image: nginx/nginx-ingress:3.6.2
105+
# - image: nginx/nginx-ingress:3.7.0
106106
# imagePullPolicy: IfNotPresent
107107
# name: init-nginx-ingress
108108
# command: ['cp', '-vdR', '/etc/nginx/.', '/mnt/etc']

Diff for: docs/content/installation/integrations/app-protect-waf-v5/installation.md

+1
Original file line numberDiff line numberDiff line change
@@ -373,6 +373,7 @@ If you prefer not to build your own NGINX Ingress Controller image, you can use
373373
{{< bootstrap-table "table table-bordered table-striped table-responsive" >}}
374374
| NIC Version | App Protect WAFv5 Version | Config Manager | Enforcer |
375375
| --- | --- | --- | --- |
376+
| 3.7.0 | 32_5.144 | 5.3.0 | 5.3.0 |
376377
| 3.6.2 | 32_5.48 | 5.2.0 | 5.2.0 |
377378
{{% /bootstrap-table %}}
378379

0 commit comments

Comments
 (0)