Skip to content

Commit 4724d4b

Browse files
authored
Merge pull request #41 from cloudogu/feature/version-update
Update k8s, helm and yamllint
2 parents cf86e16 + 6d34750 commit 4724d4b

File tree

2 files changed

+7
-5
lines changed

2 files changed

+7
-5
lines changed

CHANGELOG.md

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

1414
### Changed
1515
- Disable yamllint image due to image is not longer maintained
16+
- Update k8s, helm and yamllint
1617

1718
## [0.6.0](https://github.com/cloudogu/gitops-build-lib/releases/tag/0.6.0) - 2024-08-26
1819

vars/deployViaGitops.groovy

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,9 @@ List getMandatoryFields() {
2222
Map createDefaultConfig(String k8sVersion) {
2323

2424
if (k8sVersion == null || k8sVersion == ""){
25-
k8sVersion = "1.24.8"
25+
k8sVersion = "1.29.8"
2626
}
27+
String helmVersion = '3.16.1-1'
2728

2829
return [
2930
k8sVersion : "${k8sVersion}",
@@ -34,7 +35,7 @@ Map createDefaultConfig(String k8sVersion) {
3435
buildImages : [
3536
helm: [
3637
credentialsId: '',
37-
image: 'ghcr.io/cloudogu/helm:3.11.1-2'
38+
image: "ghcr.io/cloudogu/helm:${helmVersion}"
3839
],
3940
kubectl: [
4041
credentialsId: '',
@@ -43,15 +44,15 @@ Map createDefaultConfig(String k8sVersion) {
4344
// We use the helm image (that also contains kubeval plugin) to speed up builds by allowing to reuse image
4445
kubeval: [
4546
credentialsId: '',
46-
image: 'ghcr.io/cloudogu/helm:3.5.4-1'
47+
image: "ghcr.io/cloudogu/helm:${helmVersion}"
4748
],
4849
helmKubeval: [
4950
credentialsId: '',
50-
image: 'ghcr.io/cloudogu/helm:3.5.4-1'
51+
image: "ghcr.io/cloudogu/helm:${helmVersion}"
5152
],
5253
yamllint: [
5354
credentialsId: '',
54-
image: 'cytopia/yamllint:1.25-0.9'
55+
image: 'cytopia/yamllint:1.26-0.9'
5556
]
5657
],
5758
deployments : [

0 commit comments

Comments
 (0)