Skip to content

Commit 76a8c94

Browse files
renovate[bot]Gacko
andauthored
Chart: Update cluster to v4.2.0. (#1520)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Marco Ebert <[email protected]>
1 parent d5c0108 commit 76a8c94

File tree

6 files changed

+45
-5
lines changed

6 files changed

+45
-5
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
99

1010
### Changed
1111

12-
- Chart: Update `cluster` to v4.1.0.
12+
- Chart: Update `cluster` to v4.2.0.
1313
- The container registry passed as value to default apps is set to `gsoci.azurecr.io`, regardless of the cluster region. The mirroring feature of `containerd` will make sure the right registry is used.
1414
- Switch to HelmReleases to install `karpenter` and `karpenter-crossplane-resources` charts.
1515
- Bump flux `HelmReleases` api version to v2.

helm/cluster-aws/Chart.lock

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
dependencies:
22
- name: cluster
33
repository: https://giantswarm.github.io/cluster-catalog
4-
version: 4.1.0
4+
version: 4.2.0
55
- name: cluster-shared
66
repository: https://giantswarm.github.io/cluster-catalog
77
version: 0.7.1
8-
digest: sha256:d35d86b3414d138b906823b336819e7b3ea1553f8ebf49c36f60c0430bf60770
9-
generated: "2025-10-14T09:23:06.185224936Z"
8+
digest: sha256:1c4c18cdeba1c6586ff1ff61b0e332d8cb2c68ac88cd29d7179795d2d4370f8b
9+
generated: "2025-10-14T16:08:13.682067655Z"

helm/cluster-aws/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ restrictions:
1616
- capa
1717
dependencies:
1818
- name: cluster
19-
version: "4.1.0"
19+
version: "4.2.0"
2020
repository: https://giantswarm.github.io/cluster-catalog
2121
- name: cluster-shared
2222
version: "0.7.1"

helm/cluster-aws/README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -282,6 +282,10 @@ Advanced configuration of components that are running on all nodes.
282282
| `global.components.auditd` | **Auditd** - Enable Auditd service.|**Type:** `[object]`<br/>|
283283
| `global.components.auditd.enabled` | **Enabled** - Whether or not the Auditd service shall be enabled. When true, the Auditd service is enabled. When false, the Auditd rules service is disabled.|**Type:** `[boolean]`<br/>**Default:** `false`|
284284
| `global.components.containerd` | **Containerd** - Configuration of containerd.|**Type:** `[object]`<br/>|
285+
| `global.components.containerd.cdi` | **Container Device Interface (CDI)** - Configuration of CDI support in containerd.|**Type:** `[object]`<br/>|
286+
| `global.components.containerd.cdi.enabled` | **Enabled** - Enabling this will configure containerd to support Container Device Interface (CDI) specification.|**Type:** `[boolean]`<br/>**Default:** `false`|
287+
| `global.components.containerd.cdi.specDirs` | **CDI spec directories** - List of directories to search for CDI spec files.|**Type:** `[array]`<br/>**Default:** `["/etc/cdi","/var/run/cdi"]`|
288+
| `global.components.containerd.cdi.specDirs[*]` | **CDI spec directory** - Directory to search for CDI spec files.|**Type:** `[string]`<br/>|
285289
| `global.components.containerd.containerRegistries` | **Container registries** - Endpoints and credentials configuration for container registries.|**Type:** `[object]`<br/>**Default:** `{"docker.io":[{"endpoint":"registry-1.docker.io"},{"endpoint":"giantswarm.azurecr.io"}],"gsoci.azurecr.io":[{"endpoint":"gsoci.azurecr.io"}]}`|
286290
| `global.components.containerd.containerRegistries.*` | **Registries** - Container registries and mirrors|**Type:** `[array]`<br/>|
287291
| `global.components.containerd.containerRegistries.*[*]` | **Registry**|**Type:** `[object]`<br/>|

helm/cluster-aws/values.schema.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1437,6 +1437,37 @@
14371437
],
14381438
"additionalProperties": false,
14391439
"properties": {
1440+
"cdi": {
1441+
"type": "object",
1442+
"title": "Container Device Interface (CDI)",
1443+
"description": "Configuration of CDI support in containerd.",
1444+
"required": [
1445+
"enabled"
1446+
],
1447+
"additionalProperties": false,
1448+
"properties": {
1449+
"enabled": {
1450+
"type": "boolean",
1451+
"title": "Enabled",
1452+
"description": "Enabling this will configure containerd to support Container Device Interface (CDI) specification.",
1453+
"default": false
1454+
},
1455+
"specDirs": {
1456+
"type": "array",
1457+
"title": "CDI spec directories",
1458+
"description": "List of directories to search for CDI spec files.",
1459+
"items": {
1460+
"type": "string",
1461+
"title": "CDI spec directory",
1462+
"description": "Directory to search for CDI spec files."
1463+
},
1464+
"default": [
1465+
"/etc/cdi",
1466+
"/var/run/cdi"
1467+
]
1468+
}
1469+
}
1470+
},
14401471
"containerRegistries": {
14411472
"type": "object",
14421473
"title": "Container registries",

helm/cluster-aws/values.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -307,6 +307,11 @@ global:
307307
auditd:
308308
enabled: false
309309
containerd:
310+
cdi:
311+
enabled: false
312+
specDirs:
313+
- /etc/cdi
314+
- /var/run/cdi
310315
containerRegistries:
311316
docker.io:
312317
- endpoint: registry-1.docker.io

0 commit comments

Comments
 (0)