Skip to content

Commit 0ffb6a1

Browse files
author
Yoan Moscatelli
committed
⬆️ bump ingress-nginx chart to 4.12.1
1 parent 0e5615a commit 0ffb6a1

File tree

56 files changed

+533
-729
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

56 files changed

+533
-729
lines changed

CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## Release 129.0.3 (in development)
44

5+
### Enhancements
6+
7+
- Bump ingress-nginx chart version to
8+
[4.12.1](https://github.com/kubernetes/ingress-nginx/releases/tag/helm-chart-4.12.1)
9+
The controller image has been bumped accordingly to
10+
[v1.12.1](https://github.com/kubernetes/ingress-nginx/releases/tag/controller-v1.12.1)
11+
12+
- Bump nginx image to [1.27.5-alpine](https://github.com/nginx/nginx/releases/tag/release-1.27.5)
13+
(PR[#4544](https://github.com/scality/metalk8s/pull/4544))
14+
515
## Release 129.0.2
616

717
## Release 129.0.1

buildchain/buildchain/versions.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def load_version_information() -> None:
8282

8383
ETCD_VERSION: str = "3.5.15"
8484
ETCD_IMAGE_VERSION: str = f"{ETCD_VERSION}-0"
85-
NGINX_IMAGE_VERSION: str = "1.27.2-alpine"
85+
NGINX_IMAGE_VERSION: str = "1.27.5-alpine"
8686
NODEJS_IMAGE_VERSION: str = "20.11.1"
8787
KEEPALIVED_VERSION: str = "2.3.1"
8888
CERT_MANAGER_VERSION: str = "1.16.1"
@@ -187,8 +187,8 @@ def _version_prefix(version: str, prefix: str = "v") -> str:
187187
),
188188
Image(
189189
name="nginx-ingress-controller",
190-
version="v1.11.3",
191-
digest="sha256:d56f135b6462cfc476447cfe564b83a45e8bb7da2774963b00d12161112270b7",
190+
version="v1.12.1",
191+
digest="sha256:d2fbc4ec70d8aa2050dd91a91506e998765e86c96f32cffb56c503c9c34eed5b",
192192
),
193193
Image(
194194
name="node-exporter",

charts/ingress-nginx/Chart.yaml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
annotations:
22
artifacthub.io/changes: |
3-
- Update Ingress-Nginx version controller-v1.11.3
3+
- Update Ingress-Nginx version controller-v1.12.1
44
artifacthub.io/prerelease: "false"
55
apiVersion: v2
6-
appVersion: 1.11.3
6+
appVersion: 1.12.1
77
description: Ingress controller for Kubernetes using NGINX as a reverse proxy and
88
load balancer
99
home: https://github.com/kubernetes/ingress-nginx
@@ -15,11 +15,9 @@ kubeVersion: '>=1.21.0-0'
1515
maintainers:
1616
- name: cpanato
1717
- name: Gacko
18-
- name: puerco
19-
- name: rikatz
2018
- name: strongjz
2119
- name: tao12345666333
2220
name: ingress-nginx
2321
sources:
2422
- https://github.com/kubernetes/ingress-nginx
25-
version: 4.11.3
23+
version: 4.12.1

charts/ingress-nginx/OWNERS

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,4 @@
11
# See the OWNERS docs: https://www.kubernetes.dev/docs/guide/owners
22

3-
approvers:
4-
- ingress-nginx-helm-maintainers
5-
6-
reviewers:
7-
- ingress-nginx-helm-reviewers
8-
93
labels:
104
- area/helm

charts/ingress-nginx/README.md

Lines changed: 38 additions & 33 deletions
Large diffs are not rendered by default.

charts/ingress-nginx/README.md.gotmpl

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -226,4 +226,22 @@ Detail of how and why are in [this issue](https://github.com/helm/charts/pull/13
226226

227227
As of version `1.26.0` of this chart, by simply not providing any clusterIP value, `invalid: spec.clusterIP: Invalid value: "": field is immutable` will no longer occur since `clusterIP: ""` will not be rendered.
228228

229+
### Pod Security Admission
230+
231+
You can use Pod Security Admission by applying labels to the `ingress-nginx` namespace as instructed by the [documentation](https://kubernetes.io/docs/tasks/configure-pod-container/enforce-standards-namespace-labels).
232+
233+
Example:
234+
235+
```yaml
236+
apiVersion: v1
237+
kind: Namespace
238+
metadata:
239+
name: ingress-nginx
240+
labels:
241+
kubernetes.io/metadata.name: ingress-nginx
242+
name: ingress-nginx
243+
pod-security.kubernetes.io/enforce: restricted
244+
pod-security.kubernetes.io/enforce-version: v1.31
245+
```
246+
229247
{{ template "chart.valuesSection" . }}

charts/ingress-nginx/changelog/helm-chart-4.11.3.md renamed to charts/ingress-nginx/changelog/helm-chart-4.10.3.md

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

33
This file documents all notable changes to [ingress-nginx](https://github.com/kubernetes/ingress-nginx) Helm Chart. The release numbering uses [semantic versioning](http://semver.org).
44

5-
### 4.11.3
5+
### 4.10.3
66

7-
* Update Ingress-Nginx version controller-v1.11.3
7+
* Update Ingress-Nginx version controller-v1.10.3
88

9-
**Full Changelog**: https://github.com/kubernetes/ingress-nginx/compare/helm-chart-4.11.2...helm-chart-4.11.3
9+
**Full Changelog**: https://github.com/kubernetes/ingress-nginx/compare/helm-chart-4.10.2...helm-chart-4.10.3
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
This file documents all notable changes to [ingress-nginx](https://github.com/kubernetes/ingress-nginx) Helm Chart. The release numbering uses [semantic versioning](http://semver.org).
4+
5+
### 4.10.4
6+
7+
* Update Ingress-Nginx version controller-v1.10.4
8+
9+
**Full Changelog**: https://github.com/kubernetes/ingress-nginx/compare/helm-chart-4.10.3...helm-chart-4.10.4
Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
# Changelog
2+
3+
This file documents all notable changes to [ingress-nginx](https://github.com/kubernetes/ingress-nginx) Helm Chart. The release numbering uses [semantic versioning](http://semver.org).
4+
5+
### 4.12.0-beta.0
6+
7+
* Update Ingress-Nginx version controller-v1.12.0-beta.0
8+
9+
**Full Changelog**: https://github.com/kubernetes/ingress-nginx/compare/helm-chart-4.11.0...helm-chart-4.12.0-beta.0
Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# Changelog
2+
3+
This file documents all notable changes to [ingress-nginx](https://github.com/kubernetes/ingress-nginx) Helm Chart. The release numbering uses [semantic versioning](http://semver.org).
4+
5+
### 4.12.0
6+
7+
* CI: Fix chart testing. (#12258)
8+
* Update Ingress-Nginx version controller-v1.12.0
9+
10+
**Full Changelog**: https://github.com/kubernetes/ingress-nginx/compare/helm-chart-4.11.0...helm-chart-4.12.0

0 commit comments

Comments
 (0)