Skip to content

Commit a8a0f15

Browse files
authored
Update NGINX Ingress Controller to 3.5.1 (#292)
1 parent 248abd0 commit a8a0f15

18 files changed

+36
-36
lines changed

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ metadata:
7777
"image": {
7878
"pullPolicy": "IfNotPresent",
7979
"repository": "nginx/nginx-ingress",
80-
"tag": "3.5.0-ubi"
80+
"tag": "3.5.1-ubi"
8181
},
8282
"includeYear": false,
8383
"ingressClass": {

config/samples/charts_v1alpha1_nginxingress.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ spec:
3535
customPorts: []
3636
image:
3737
repository: nginx/nginx-ingress
38-
tag: "3.5.0-ubi"
38+
tag: "3.5.1-ubi"
3939
# digest: "sha256:CHANGEME"
4040
pullPolicy: IfNotPresent
4141
lifecycle: {}

docs/nginx-ingress-controller.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ spec:
4747
customPorts: []
4848
image:
4949
repository: nginx/nginx-ingress
50-
tag: "3.5.0-ubi"
50+
tag: "3.5.1-ubi"
5151
# digest: "sha256:CHANGEME"
5252
pullPolicy: IfNotPresent
5353
lifecycle: {}

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.5.0-ubi
14+
tag: 3.5.1-ubi
1515
ingressClass:
1616
name: nginx
1717
kind: deployment

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.5.0-ubi
14+
tag: 3.5.1-ubi
1515
ingressClass:
1616
name: nginx
1717
kind: deployment
Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v2
2-
appVersion: 3.5.0
2+
appVersion: 3.5.1
33
description: NGINX Ingress Controller
44
home: https://github.com/nginxinc/kubernetes-ingress
5-
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.5.0/charts/nginx-ingress/chart-icon.png
5+
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.5.1/charts/nginx-ingress/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.5.0/charts/nginx-ingress
15+
- https://github.com/nginxinc/kubernetes-ingress/tree/v3.5.1/charts/nginx-ingress
1616
type: application
17-
version: 1.2.0
17+
version: 1.2.1

helm-charts/nginx-ingress/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Introduction
44

5-
This chart deploys NGINX Ingress Controller in your Kubernetes cluster.
5+
This chart deploys the NGINX Ingress Controller in your Kubernetes cluster.
66

77
## Prerequisites
88

@@ -51,10 +51,10 @@ kubectl apply -f crds/
5151
Alternatively, CRDs can be upgraded without pulling the chart by running:
5252

5353
```console
54-
kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.5.0/deploy/crds.yaml
54+
kubectl apply -f https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.5.1/deploy/crds.yaml
5555
```
5656

57-
In the above command, `v3.5.0` represents the version of NGINX Ingress Controller release rather than the Helm chart version.
57+
In the above command, `v3.5.1` represents the version of NGINX Ingress Controller release rather than the Helm chart version.
5858

5959
> **Note**
6060
>
@@ -87,14 +87,14 @@ To install the chart with the release name my-release (my-release is the name th
8787
For NGINX:
8888

8989
```console
90-
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.1.3
90+
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.2.1
9191
```
9292

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

9696
```console
97-
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.1.3 --set controller.image.repository=myregistry.example.com/nginx-plus-ingress --set controller.nginxplus=true
97+
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.2.1 --set controller.image.repository=myregistry.example.com/nginx-plus-ingress --set controller.nginxplus=true
9898
```
9999

100100
This will install the latest `edge` version of the Ingress Controller from GitHub Container Registry. If you prefer to
@@ -109,7 +109,7 @@ CRDs](#upgrading-the-crds).
109109
To upgrade the release `my-release`:
110110

111111
```console
112-
helm upgrade my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.1.3
112+
helm upgrade my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.2.1
113113
```
114114

115115
### Uninstalling the Chart
@@ -150,7 +150,7 @@ upgrading/deleting the CRDs.
150150
1. Pull the chart sources:
151151

152152
```console
153-
helm pull oci://ghcr.io/nginxinc/charts/nginx-ingress --untar --version 1.1.3
153+
helm pull oci://ghcr.io/nginxinc/charts/nginx-ingress --untar --version 1.2.1
154154
```
155155

156156
2. Change your working directory to nginx-ingress:
@@ -236,7 +236,7 @@ The steps you should follow depend on the Helm release name:
236236
Selector: app=nginx-ingress-nginx-ingress
237237
```
238238

239-
2. Checkout the latest available tag using `git checkout v3.5.0`
239+
2. Checkout the latest available tag using `git checkout v3.5.1`
240240

241241
3. Navigate to `/kubernates-ingress/charts/nginx-ingress`
242242

@@ -288,7 +288,7 @@ reviewing its events:
288288
Selector: app=<helm_release_name>-nginx-ingress
289289
```
290290

291-
2. Checkout the latest available tag using `git checkout v3.5.0`
291+
2. Checkout the latest available tag using `git checkout v3.5.1`
292292

293293
3. Navigate to `/kubernates-ingress/charts/nginx-ingress`
294294

@@ -355,7 +355,7 @@ The following tables lists the configurable parameters of the NGINX Ingress Cont
355355
|`controller.logLevel` | The log level of the Ingress Controller. | 1 |
356356
|`controller.image.digest` | The image digest of the Ingress Controller. | None |
357357
|`controller.image.repository` | The image repository of the Ingress Controller. | nginx/nginx-ingress |
358-
|`controller.image.tag` | The tag of the Ingress Controller image. | 3.5.0 |
358+
|`controller.image.tag` | The tag of the Ingress Controller image. | 3.5.1 |
359359
|`controller.image.pullPolicy` | The pull policy for the Ingress Controller image. | IfNotPresent |
360360
|`controller.lifecycle` | The lifecycle of the Ingress Controller pods. | {} |
361361
|`controller.customConfigMap` | The name of the custom ConfigMap used by the Ingress Controller. If set, then the default config is ignored. | "" |
@@ -386,7 +386,7 @@ The following tables lists the configurable parameters of the NGINX Ingress Cont
386386
|`controller.initContainerResources` | The resources of the init container which is used when `readOnlyRootFilesystem` is enabled by either setting `controller.securityContext.readOnlyRootFilesystem` or `controller.readOnlyRootFilesystem`to `true`. | requests: cpu=100m,memory=128Mi |
387387
|`controller.replicaCount` | The number of replicas of the Ingress Controller deployment. | 1 |
388388
|`controller.ingressClass.name` | A class of the Ingress Controller. An IngressClass resource with the name equal to the class must be deployed. Otherwise, the Ingress Controller will fail to start. The Ingress Controller only processes resources that belong to its class - i.e. have the "ingressClassName" field resource equal to the class. The Ingress Controller processes all the VirtualServer/VirtualServerRoute/TransportServer resources that do not have the "ingressClassName" field for all versions of Kubernetes. | nginx |
389-
|`controller.ingressClass.create` | Creates a new IngressClass object with the name `controller.ingressClass.name`. Set to `false` to use an existing ingressClass created using `kubectl` with the same name. If you use `helm upgrade`, do not change the values from the previous release as helm will delete IngressClass objects managed by helm. If you are upgrading from a release earlier than 3.5.0, do not set the value to false. | true |
389+
|`controller.ingressClass.create` | Creates a new IngressClass object with the name `controller.ingressClass.name`. Set to `false` to use an existing ingressClass created using `kubectl` with the same name. If you use `helm upgrade`, do not change the values from the previous release as helm will delete IngressClass objects managed by helm. If you are upgrading from a release earlier than 3.5.1, do not set the value to false. | true |
390390
|`controller.ingressClass.setAsDefaultIngress` | New Ingresses without an `"ingressClassName"` field specified will be assigned the class specified in `controller.ingressClass.name`. Requires `controller.ingressClass.create`. | false |
391391
|`controller.watchNamespace` | Comma separated list of namespaces the Ingress Controller should watch for resources. By default the Ingress Controller watches all namespaces. Mutually exclusive with `controller.watchNamespaceLabel`. Please note that if configuring multiple namespaces using the Helm cli `--set` option, the string needs to wrapped in double quotes and the commas escaped using a backslash - e.g. `--set controller.watchNamespace="default\,nginx-ingress"`. | "" |
392392
|`controller.watchNamespaceLabel` | Configures the Ingress Controller to watch only those namespaces with label foo=bar. By default the Ingress Controller watches all namespaces. Mutually exclusive with `controller.watchNamespace`. | "" |
@@ -471,7 +471,7 @@ The following tables lists the configurable parameters of the NGINX Ingress Cont
471471
|`controller.readOnlyRootFilesystem` | Configure root filesystem as read-only and add volumes for temporary data. Three major releases after 3.5.x this argument will be moved permanently to the `controller.securityContext` section. | false |
472472
|`controller.enableSSLDynamicReload` | Enable lazy loading for SSL Certificates. | true |
473473
|`controller.telemetryReporting.enable` | Enable telemetry reporting. | true |
474-
|`controller.enableDynamicWeightChangesReload` | Enable weight changes without reloading the NGINX configuration. May require increasing map_hash_bucket_size, map_hash_max_size, variable_hash_bucket_size, and variable_hash_max_size in the [ConfigMap](https://docs.nginx.com/nginx-ingress-controller/configuration/global-configuration/configmap-resource/) if there are many two-way splits. Requires `controller.nginxplus` | false |
474+
|`controller.enableWeightChangesDynamicReload` | Enable weight changes without reloading the NGINX configuration. May require increasing `map_hash_bucket_size`, `map_hash_max_size`, `variable_hash_bucket_size`, and `variable_hash_max_size` in the [ConfigMap](https://docs.nginx.com/nginx-ingress-controller/configuration/global-configuration/configmap-resource/) if there are many two-way splits. Requires `controller.nginxplus` | false |
475475
|`rbac.create` | Configures RBAC. | true |
476476
|`prometheus.create` | Expose NGINX or NGINX Plus metrics in the Prometheus format. | true |
477477
|`prometheus.port` | Configures the port to scrape the metrics. | 9113 |

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
name: dosprotectedresources.appprotectdos.f5.com
88
spec:
99
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
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
name: dnsendpoints.externaldns.nginx.org
88
spec:
99
group: externaldns.nginx.org

helm-charts/nginx-ingress/crds/k8s.nginx.org_globalconfigurations.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiVersion: apiextensions.k8s.io/v1
33
kind: CustomResourceDefinition
44
metadata:
55
annotations:
6-
controller-gen.kubebuilder.io/version: v0.14.0
6+
controller-gen.kubebuilder.io/version: v0.15.0
77
name: globalconfigurations.k8s.nginx.org
88
spec:
99
group: k8s.nginx.org

0 commit comments

Comments
 (0)