Skip to content

Commit 91abd8f

Browse files
committed
updating 3rd party dependencies
1 parent 4a5e0fb commit 91abd8f

File tree

3 files changed

+11
-8
lines changed

3 files changed

+11
-8
lines changed

CHANGELOG.md

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

88
## [Unreleased]
99

10+
### Changed
11+
- Version update for 3rd party dependencies
12+
1013
## [0.6.0](https://github.com/cloudogu/gitops-build-lib/releases/tag/0.6.0) - 2024-08-26
1114

1215
### Changed

test/com/cloudogu/gitopsbuildlib/DeployViaGitopsTest.groovy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,8 @@ class DeployViaGitopsTest extends BasePipelineTest {
6262
enabled : true,
6363
config : [
6464
// We use the helm image (that also contains kubeval plugin) to speed up builds by allowing to reuse image
65-
image : 'ghcr.io/cloudogu/helm:3.4.1-1',
66-
k8sSchemaVersion: '1.18.1'
65+
image : 'ghcr.io/cloudogu/helm:3.15.4-1',
66+
k8sSchemaVersion: '1.29.8'
6767
]
6868
],
6969
yamllint: [

vars/deployViaGitops.groovy

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

2424
if (k8sVersion == null || k8sVersion == ""){
25-
k8sVersion = "1.24.8"
25+
k8sVersion = "1.29.8"
2626
}
2727

2828
return [
@@ -34,7 +34,7 @@ Map createDefaultConfig(String k8sVersion) {
3434
buildImages : [
3535
helm: [
3636
credentialsId: '',
37-
image: 'ghcr.io/cloudogu/helm:3.11.1-2'
37+
image: 'ghcr.io/cloudogu/helm:3.15.4-1'
3838
],
3939
kubectl: [
4040
credentialsId: '',
@@ -43,11 +43,11 @@ Map createDefaultConfig(String k8sVersion) {
4343
// We use the helm image (that also contains kubeval plugin) to speed up builds by allowing to reuse image
4444
kubeval: [
4545
credentialsId: '',
46-
image: 'ghcr.io/cloudogu/helm:3.5.4-1'
46+
image: 'ghcr.io/cloudogu/helm:3.15.4-1'
4747
],
4848
helmKubeval: [
4949
credentialsId: '',
50-
image: 'ghcr.io/cloudogu/helm:3.5.4-1'
50+
image: 'ghcr.io/cloudogu/helm:3.15.4-1'
5151
],
5252
yamllint: [
5353
credentialsId: '',
@@ -65,15 +65,15 @@ Map createDefaultConfig(String k8sVersion) {
6565
config : [
6666
// imageRef's are referencing the key in gitopsConfig.buildImages
6767
imageRef : 'kubeval',
68-
k8sSchemaVersion: '1.18.1'
68+
k8sSchemaVersion: '1.29.8'
6969
]
7070
],
7171
helmKubeval: [
7272
validator: new HelmKubeval(this),
7373
enabled : false,
7474
config : [
7575
imageRef : 'helmKubeval',
76-
k8sSchemaVersion: '1.18.1'
76+
k8sSchemaVersion: '1.29.8'
7777
]
7878
],
7979
yamllint : [

0 commit comments

Comments
 (0)