Skip to content

Commit 32fd15a

Browse files
authored
Update NGINX Ingress Controller to 3.2.1 (#154)
1 parent c6daad3 commit 32fd15a

18 files changed

+26
-26
lines changed

bundle/manifests/nginx-ingress-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ metadata:
6363
"image": {
6464
"pullPolicy": "IfNotPresent",
6565
"repository": "nginx/nginx-ingress",
66-
"tag": "3.2.0-ubi"
66+
"tag": "3.2.1-ubi"
6767
},
6868
"includeYear": false,
6969
"ingressClass": "nginx",

config/manifests/bases/nginx-ingress-operator.clusterserviceversion.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ metadata:
3333
"customPorts": [],
3434
"image": {
3535
"repository": "nginx/nginx-ingress",
36-
"tag": "3.2.0-ubi",
36+
"tag": "3.2.1-ubi",
3737
"pullPolicy": "IfNotPresent"
3838
},
3939
"lifecycle": {},

config/samples/charts_v1alpha1_nginxingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ spec:
2525
customPorts: []
2626
image:
2727
repository: nginx/nginx-ingress
28-
tag: "3.2.0-ubi"
28+
tag: "3.2.1-ubi"
2929
# digest: "sha256:CHANGEME"
3030
pullPolicy: IfNotPresent
3131
lifecycle: {}

docs/nginx-ingress-controller.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ spec:
3636
customPorts: []
3737
image:
3838
repository: nginx/nginx-ingress
39-
tag: "3.2.0-ubi"
39+
tag: "3.2.1-ubi"
4040
# digest: "sha256:CHANGEME"
4141
pullPolicy: IfNotPresent
4242
lifecycle: {}
@@ -220,7 +220,7 @@ Parameter | Description | Default
220220
`controller.logLevel` | The log level of the Ingress Controller. | 1
221221
`controller.image.digest ` | The image digest of the Ingress Controller. | None
222222
`controller.image.repository` | The image repository of the Ingress Controller. | nginx/nginx-ingress
223-
`controller.image.tag` | The tag of the Ingress Controller image. | 3.2.0
223+
`controller.image.tag` | The tag of the Ingress Controller image. | 3.2.1
224224
`controller.image.pullPolicy` | The pull policy for the Ingress Controller image. | IfNotPresent
225225
`controller.lifecycle` | The lifecycle of the Ingress Controller pods. | {}
226226
`controller.customConfigMap` | The name of the custom ConfigMap used by the Ingress Controller. If set, then the default config is ignored. | ""

examples/deployment-oss-min/nginx-ingress-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
image:
1212
pullPolicy: IfNotPresent
1313
repository: nginx/nginx-ingress
14-
tag: 3.2.0-ubi
14+
tag: 3.2.1-ubi
1515
ingressClass: nginx
1616
kind: deployment
1717
nginxplus: false

examples/deployment-plus-min/nginx-ingress-controller.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
image:
1212
pullPolicy: IfNotPresent
1313
repository: nginx/nginx-ingress
14-
tag: 3.2.0-ubi
14+
tag: 3.2.1-ubi
1515
ingressClass: nginx
1616
kind: deployment
1717
nginxplus: true
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
2-
appVersion: 3.2.0
2+
appVersion: 3.2.1
33
description: NGINX Ingress Controller
44
home: https://github.com/nginxinc/kubernetes-ingress
5-
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.2.0/deployments/helm-chart/chart-icon.png
5+
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.2.1/deployments/helm-chart/chart-icon.png
66
keywords:
77
- ingress
88
- nginx
@@ -12,6 +12,6 @@ maintainers:
1212
name: nginxinc
1313
name: nginx-ingress
1414
sources:
15-
- https://github.com/nginxinc/kubernetes-ingress/tree/v3.2.0/deployments/helm-chart
15+
- https://github.com/nginxinc/kubernetes-ingress/tree/v3.2.1/deployments/helm-chart
1616
type: application
17-
version: 0.18.0
17+
version: 0.18.1

helm-charts/nginx-ingress/README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -56,13 +56,13 @@ To install the chart with the release name my-release (my-release is the name th
5656
For NGINX:
5757

5858
```console
59-
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 0.18.0
59+
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 0.18.1
6060
```
6161

6262
For NGINX Plus: (assuming you have pushed the Ingress Controller image `nginx-plus-ingress` to your private registry `myregistry.example.com`)
6363

6464
```console
65-
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 0.18.0 --set controller.image.repository=myregistry.example.com/nginx-plus-ingress --set controller.nginxplus=true
65+
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 0.18.1 --set controller.image.repository=myregistry.example.com/nginx-plus-ingress --set controller.nginxplus=true
6666
```
6767

6868
This will install the latest `edge` version of the Ingress Controller from GitHub Container Registry. If you prefer to use Docker Hub, you can replace `ghcr.io/nginxinc/charts/nginx-ingress` with `registry-1.docker.io/nginxcharts/nginx-ingress`.
@@ -74,7 +74,7 @@ Helm does not upgrade the CRDs during a release upgrade. Before you upgrade a re
7474
To upgrade the release `my-release`:
7575

7676
```console
77-
helm upgrade my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 0.18.0
77+
helm upgrade my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 0.18.1
7878
```
7979

8080
### Uninstalling the Chart
@@ -111,7 +111,7 @@ This step is required if you're installing the chart using its sources. Addition
111111
1. Pull the chart sources:
112112

113113
```console
114-
helm pull oci://ghcr.io/nginxinc/charts/nginx-ingress --untar --version 0.18.0
114+
helm pull oci://ghcr.io/nginxinc/charts/nginx-ingress --untar --version 0.18.1
115115
```
116116

117117
2. Change your working directory to nginx-ingress:
@@ -183,7 +183,7 @@ The following tables lists the configurable parameters of the NGINX Ingress Cont
183183
|`controller.logLevel` | The log level of the Ingress Controller. | 1 |
184184
|`controller.image.digest` | The image digest of the Ingress Controller. | None |
185185
|`controller.image.repository` | The image repository of the Ingress Controller. | nginx/nginx-ingress |
186-
|`controller.image.tag` | The tag of the Ingress Controller image. | 3.2.0 |
186+
|`controller.image.tag` | The tag of the Ingress Controller image. | 3.2.1 |
187187
|`controller.image.pullPolicy` | The pull policy for the Ingress Controller image. | IfNotPresent |
188188
|`controller.lifecycle` | The lifecycle of the Ingress Controller pods. | {} |
189189
|`controller.customConfigMap` | The name of the custom ConfigMap used by the Ingress Controller. If set, then the default config is ignored. | "" |

helm-charts/nginx-ingress/crds/appprotectdos.f5.com_dosprotectedresources.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.12.0
5+
controller-gen.kubebuilder.io/version: v0.12.1
66
name: dosprotectedresources.appprotectdos.f5.com
77
spec:
88
group: appprotectdos.f5.com

helm-charts/nginx-ingress/crds/externaldns.nginx.org_dnsendpoints.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: apiextensions.k8s.io/v1
22
kind: CustomResourceDefinition
33
metadata:
44
annotations:
5-
controller-gen.kubebuilder.io/version: v0.12.0
5+
controller-gen.kubebuilder.io/version: v0.12.1
66
name: dnsendpoints.externaldns.nginx.org
77
spec:
88
group: externaldns.nginx.org

0 commit comments

Comments
 (0)