File tree Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Expand file tree Collapse file tree 2 files changed +7
-5
lines changed Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
14
14
### Changed
15
15
- Disable yamllint image due to image is not longer maintained
16
+ - Update k8s, helm and yamllint
16
17
17
18
## [ 0.6.0] ( https://github.com/cloudogu/gitops-build-lib/releases/tag/0.6.0 ) - 2024-08-26
18
19
Original file line number Diff line number Diff line change @@ -22,8 +22,9 @@ List getMandatoryFields() {
22
22
Map createDefaultConfig (String k8sVersion ) {
23
23
24
24
if (k8sVersion == null || k8sVersion == " " ){
25
- k8sVersion = " 1.24 .8"
25
+ k8sVersion = " 1.29 .8"
26
26
}
27
+ String helmVersion = ' 3.16.1-1'
27
28
28
29
return [
29
30
k8sVersion : " ${ k8sVersion} " ,
@@ -34,7 +35,7 @@ Map createDefaultConfig(String k8sVersion) {
34
35
buildImages : [
35
36
helm : [
36
37
credentialsId : ' ' ,
37
- image : ' ghcr.io/cloudogu/helm:3.11.1-2 '
38
+ image : " ghcr.io/cloudogu/helm:${ helmVersion } "
38
39
],
39
40
kubectl : [
40
41
credentialsId : ' ' ,
@@ -43,15 +44,15 @@ Map createDefaultConfig(String k8sVersion) {
43
44
// We use the helm image (that also contains kubeval plugin) to speed up builds by allowing to reuse image
44
45
kubeval : [
45
46
credentialsId : ' ' ,
46
- image : ' ghcr.io/cloudogu/helm:3.5.4-1 '
47
+ image : " ghcr.io/cloudogu/helm:${ helmVersion } "
47
48
],
48
49
helmKubeval : [
49
50
credentialsId : ' ' ,
50
- image : ' ghcr.io/cloudogu/helm:3.5.4-1 '
51
+ image : " ghcr.io/cloudogu/helm:${ helmVersion } "
51
52
],
52
53
yamllint : [
53
54
credentialsId : ' ' ,
54
- image : ' cytopia/yamllint:1.25 -0.9'
55
+ image : ' cytopia/yamllint:1.26 -0.9'
55
56
]
56
57
],
57
58
deployments : [
You can’t perform that action at this time.
0 commit comments