Skip to content

Commit eaddec6

Browse files
Update module sigs.k8s.io/cluster-api to v1.8.3 (#214)
* Update module sigs.k8s.io/cluster-api to v1.8.3 * Bump CAPI version to find CRDs in k8s tests * Use newer ubuntu images on circleci --------- Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Jose Armesto <[email protected]>
1 parent c2a08bf commit eaddec6

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

.circleci/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
integration-tests:
1414
executor: architect/machine
1515
machine:
16-
image: 'ubuntu-2004:202010-01'
16+
image: 'ubuntu-2204:2024.05.1'
1717
steps:
1818
- checkout
1919
- architect/machine-install-go
@@ -32,7 +32,7 @@ jobs:
3232
acceptance-tests:
3333
executor: architect/machine
3434
machine:
35-
image: 'ubuntu-2004:2023.04.2'
35+
image: 'ubuntu-2204:2024.05.1'
3636
steps:
3737
- checkout
3838
- architect/machine-install-go

controllers/controllers_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ var _ = BeforeSuite(func() {
7575
By("bootstrapping test environment")
7676
testEnv = &envtest.Environment{
7777
CRDDirectoryPaths: []string{
78-
filepath.Join(build.Default.GOPATH, "pkg", "mod", "sigs.k8s.io", "[email protected].1", "config", "crd", "bases"),
78+
filepath.Join(build.Default.GOPATH, "pkg", "mod", "sigs.k8s.io", "[email protected].3", "config", "crd", "bases"),
7979
filepath.Join(build.Default.GOPATH, "pkg", "mod", "sigs.k8s.io", "cluster-api-provider-aws", "[email protected]", "config", "crd", "bases"),
8080
},
8181
ErrorIfCRDPathMissing: true,

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ require (
2121
k8s.io/apimachinery v0.31.0
2222
k8s.io/client-go v0.31.0
2323
k8s.io/kubectl v0.30.3
24-
sigs.k8s.io/cluster-api v1.8.1
24+
sigs.k8s.io/cluster-api v1.8.3
2525
sigs.k8s.io/cluster-api-provider-aws/v2 v2.6.1
2626
sigs.k8s.io/controller-runtime v0.19.0
2727
)

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -223,8 +223,8 @@ k8s.io/kubectl v0.30.3 h1:YIBBvMdTW0xcDpmrOBzcpUVsn+zOgjMYIu7kAq+yqiI=
223223
k8s.io/kubectl v0.30.3/go.mod h1:IcR0I9RN2+zzTRUa1BzZCm4oM0NLOawE6RzlDvd1Fpo=
224224
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8 h1:pUdcCO1Lk/tbT5ztQWOBi5HBgbBP1J8+AsQnQCKsi8A=
225225
k8s.io/utils v0.0.0-20240711033017-18e509b52bc8/go.mod h1:OLgZIPagt7ERELqWJFomSt595RzquPNLL48iOWgYOg0=
226-
sigs.k8s.io/cluster-api v1.8.1 h1:OA3w1CjCmXXXDL7aY3WDe+seL0mdFVJX1K5mZwqKbDE=
227-
sigs.k8s.io/cluster-api v1.8.1/go.mod h1:pXv5LqLxuIbhGIXykyNKiJh+KrLweSBajVHHitPLyoY=
226+
sigs.k8s.io/cluster-api v1.8.3 h1:N6i25rF5QMadwVg2UPfuO6CzmNXjqnF2r1MAO+kcsro=
227+
sigs.k8s.io/cluster-api v1.8.3/go.mod h1:pXv5LqLxuIbhGIXykyNKiJh+KrLweSBajVHHitPLyoY=
228228
sigs.k8s.io/cluster-api-provider-aws/v2 v2.6.1 h1:vbZUYEB7OfPlfHk6wis+UrvRLTqv5F4Nrjl2WDJ1kiw=
229229
sigs.k8s.io/cluster-api-provider-aws/v2 v2.6.1/go.mod h1:1aq1EZbirRW6NC2gYUFCc7cVFwX9PM/vDvoU+2oGPuw=
230230
sigs.k8s.io/controller-runtime v0.19.0 h1:nWVM7aq+Il2ABxwiCizrVDSlmDcshi9llbaFbC0ji/Q=

pkg/k8sclient/k8sclient_suite_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ var _ = BeforeSuite(func() {
6161
By("bootstrapping test environment")
6262
testEnv = &envtest.Environment{
6363
CRDDirectoryPaths: []string{
64-
filepath.Join(build.Default.GOPATH, "pkg", "mod", "sigs.k8s.io", "[email protected].1", "config", "crd", "bases"),
64+
filepath.Join(build.Default.GOPATH, "pkg", "mod", "sigs.k8s.io", "[email protected].3", "config", "crd", "bases"),
6565
filepath.Join(build.Default.GOPATH, "pkg", "mod", "sigs.k8s.io", "cluster-api-provider-aws", "[email protected]", "config", "crd", "bases"),
6666
},
6767
ErrorIfCRDPathMissing: true,

0 commit comments

Comments
 (0)