Skip to content

Commit d5c0108

Browse files
renovate[bot]Gacko
andauthored
chore(deps): update helm release cluster to v4.1.0 (#1515)
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Marco Ebert <[email protected]>
1 parent d7817b4 commit d5c0108

File tree

4 files changed

+41
-5
lines changed

4 files changed

+41
-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.0.3.
12+
- Chart: Update `cluster` to v4.1.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.0.3
4+
version: 4.1.0
55
- name: cluster-shared
66
repository: https://giantswarm.github.io/cluster-catalog
77
version: 0.7.1
8-
digest: sha256:559c11fdcb5fc1a8fab8c91259a6ed0767572549f4ad20649bee9624baf8fcd5
9-
generated: "2025-10-10T15:56:40.322428172Z"
8+
digest: sha256:d35d86b3414d138b906823b336819e7b3ea1553f8ebf49c36f60c0430bf60770
9+
generated: "2025-10-14T09:23:06.185224936Z"

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.0.3"
19+
version: "4.1.0"
2020
repository: https://giantswarm.github.io/cluster-catalog
2121
- name: cluster-shared
2222
version: "0.7.1"

helm/cluster-aws/values.schema.json

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -708,6 +708,42 @@
708708
}
709709
}
710710
},
711+
"strategy": {
712+
"type": "object",
713+
"title": "Update strategy",
714+
"description": "Strategy to use when updating the machines.",
715+
"properties": {
716+
"rollingUpdate": {
717+
"type": "object",
718+
"title": "Rolling update strategy",
719+
"description": "Rolling update config params.",
720+
"properties": {
721+
"deletePolicy": {
722+
"type": "string",
723+
"title": "Delete policy",
724+
"description": "DeletePolicy defines the policy used by the MachineDeployment to identify nodes to delete when downscaling. When no value is supplied, the default DeletePolicy of MachineSet is used.",
725+
"enum": [
726+
"Random",
727+
"Newest",
728+
"Oldest"
729+
]
730+
},
731+
"maxSurge": {
732+
"type": "string",
733+
"title": "Max surge",
734+
"description": "The maximum number of machines that can be scheduled above the desired number of machines. Value can be an absolute number (ex: 5) or a percentage of desired machines (ex: 10%). This can not be 0 if MaxUnavailable is 0. Absolute number is calculated from percentage by rounding up. Defaults to 1.",
735+
"default": "1"
736+
},
737+
"maxUnavailable": {
738+
"type": "string",
739+
"title": "Max unavailable",
740+
"description": "The maximum number of machines that can be unavailable during the update. Value can be an absolute number (ex: 5) or a percentage of desired machines (ex: 10%). Absolute number is calculated from percentage by rounding down. This can not be 0 if MaxSurge is 0. Defaults to 0.",
741+
"default": "0"
742+
}
743+
}
744+
}
745+
}
746+
},
711747
"subnetTags": {
712748
"type": "array",
713749
"title": "Subnet tags",

0 commit comments

Comments
 (0)