Skip to content

Commit 67477c5

Browse files
authored
Update NGINX Ingress Controller to 3.4.2 (#230)
* Update NGINX Ingress Controller to 3.4.2
1 parent 4490914 commit 67477c5

File tree

12 files changed

+27
-26
lines changed

12 files changed

+27
-26
lines changed

.github/workflows/sync-chart.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,7 @@ jobs:
5757
with:
5858
find: ${{ steps.sync.outputs.current_version }}
5959
replace: ${{ steps.sync.outputs.new_version }}
60+
regex: false
6061

6162
- name: Create Pull Request
6263
uses: peter-evans/create-pull-request@153407881ec5c347639a548ade7d8ad1d6740e38 # v5.0.2

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.4.0-ubi"
80+
"tag": "3.4.2-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.4.0-ubi"
38+
tag: "3.4.2-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.4.0-ubi"
50+
tag: "3.4.2-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.4.0-ubi
14+
tag: 3.4.2-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.4.0-ubi
14+
tag: 3.4.2-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.4.0
2+
appVersion: 3.4.2
33
description: NGINX Ingress Controller
44
home: https://github.com/nginxinc/kubernetes-ingress
5-
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.4.0/charts/nginx-ingress/chart-icon.png
5+
icon: https://raw.githubusercontent.com/nginxinc/kubernetes-ingress/v3.4.2/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.4.0/charts/nginx-ingress
15+
- https://github.com/nginxinc/kubernetes-ingress/tree/v3.4.2/charts/nginx-ingress
1616
type: application
17-
version: 1.1.0
17+
version: 1.1.2

helm-charts/nginx-ingress/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ To install the chart with the release name my-release (my-release is the name th
7979
For NGINX:
8080

8181
```console
82-
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.1.0
82+
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.1.2
8383
```
8484

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

8888
```console
89-
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.1.0 --set controller.image.repository=myregistry.example.com/nginx-plus-ingress --set controller.nginxplus=true
89+
helm install my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.1.2 --set controller.image.repository=myregistry.example.com/nginx-plus-ingress --set controller.nginxplus=true
9090
```
9191

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

103103
```console
104-
helm upgrade my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.1.0
104+
helm upgrade my-release oci://ghcr.io/nginxinc/charts/nginx-ingress --version 1.1.2
105105
```
106106

107107
### Uninstalling the Chart
@@ -142,7 +142,7 @@ upgrading/deleting the CRDs.
142142
1. Pull the chart sources:
143143

144144
```console
145-
helm pull oci://ghcr.io/nginxinc/charts/nginx-ingress --untar --version 1.1.0
145+
helm pull oci://ghcr.io/nginxinc/charts/nginx-ingress --untar --version 1.1.2
146146
```
147147

148148
2. Change your working directory to nginx-ingress:
@@ -228,7 +228,7 @@ The steps you should follow depend on the Helm release name:
228228
Selector: app=nginx-ingress-nginx-ingress
229229
```
230230

231-
2. Checkout the latest available tag using `git checkout v3.4.0`
231+
2. Checkout the latest available tag using `git checkout v3.4.2`
232232

233233
3. Navigate to `/kubernates-ingress/charts/nginx-ingress`
234234

@@ -280,7 +280,7 @@ reviewing its events:
280280
Selector: app=<helm_release_name>-nginx-ingress
281281
```
282282

283-
2. Checkout the latest available tag using `git checkout v3.4.0`
283+
2. Checkout the latest available tag using `git checkout v3.4.2`
284284

285285
3. Navigate to `/kubernates-ingress/charts/nginx-ingress`
286286

@@ -347,7 +347,7 @@ The following tables lists the configurable parameters of the NGINX Ingress Cont
347347
|`controller.logLevel` | The log level of the Ingress Controller. | 1 |
348348
|`controller.image.digest` | The image digest of the Ingress Controller. | None |
349349
|`controller.image.repository` | The image repository of the Ingress Controller. | nginx/nginx-ingress |
350-
|`controller.image.tag` | The tag of the Ingress Controller image. | 3.4.0 |
350+
|`controller.image.tag` | The tag of the Ingress Controller image. | 3.4.2 |
351351
|`controller.image.pullPolicy` | The pull policy for the Ingress Controller image. | IfNotPresent |
352352
|`controller.lifecycle` | The lifecycle of the Ingress Controller pods. | {} |
353353
|`controller.customConfigMap` | The name of the custom ConfigMap used by the Ingress Controller. If set, then the default config is ignored. | "" |
@@ -375,7 +375,7 @@ The following tables lists the configurable parameters of the NGINX Ingress Cont
375375
|`controller.initContainerResources` | The resources of the init container which is used when `controller.readOnlyRootFilesystem` is set to `true` | requests: cpu=100m,memory=128Mi |
376376
|`controller.replicaCount` | The number of replicas of the Ingress Controller deployment. | 1 |
377377
|`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 |
378-
|`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.4.0, do not set the value to false. | true |
378+
|`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.3.0, do not set the value to false. | true |
379379
|`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 |
380380
|`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"`. | "" |
381381
|`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`. | "" |

helm-charts/nginx-ingress/values-icp.yaml

Lines changed: 1 addition & 1 deletion
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.4.0"
7+
tag: "3.4.2"
88
nodeSelector:
99
beta.kubernetes.io/arch: "amd64"
1010
proxy: true

helm-charts/nginx-ingress/values-plus.yaml

Lines changed: 1 addition & 1 deletion
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.4.0"
6+
tag: "3.4.2"

0 commit comments

Comments
 (0)