Skip to content
This repository was archived by the owner on Aug 12, 2025. It is now read-only.

Commit bba2102

Browse files
authored
Merge pull request #236 from detiber/updateCAPI
🏃 Update dependencies
2 parents 2dd1d4c + 38d7d56 commit bba2102

File tree

4 files changed

+54
-48
lines changed

4 files changed

+54
-48
lines changed

controllers/suite_test.go

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,6 @@ import (
3030
"sigs.k8s.io/controller-runtime/pkg/envtest"
3131
"sigs.k8s.io/controller-runtime/pkg/envtest/printer"
3232
logf "sigs.k8s.io/controller-runtime/pkg/log"
33-
"sigs.k8s.io/controller-runtime/pkg/log/zap"
3433

3534
infrastructurev1alpha3 "sigs.k8s.io/cluster-api-provider-packet/api/v1alpha3"
3635
clusterv1 "sigs.k8s.io/cluster-api/api/v1alpha3"
@@ -59,8 +58,6 @@ func TestAPIs(t *testing.T) {
5958
}
6059

6160
var _ = BeforeSuite(func(done Done) {
62-
logf.SetLogger(zap.LoggerTo(GinkgoWriter, true))
63-
6461
By("bootstrapping test environment")
6562
testEnv = &envtest.Environment{
6663
CRDDirectoryPaths: []string{filepath.Join("..", "config", "crd", "bases")},

go.mod

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,17 @@ module sigs.k8s.io/cluster-api-provider-packet
33
go 1.13
44

55
require (
6-
github.com/go-logr/logr v0.1.0
7-
github.com/google/uuid v1.1.2
8-
github.com/onsi/ginkgo v1.14.2
9-
github.com/onsi/gomega v1.10.3
10-
github.com/packethost/packngo v0.5.1
6+
github.com/go-logr/logr v0.4.0
7+
github.com/google/uuid v1.2.0
8+
github.com/onsi/ginkgo v1.16.1
9+
github.com/onsi/gomega v1.11.0
10+
github.com/packethost/packngo v0.13.0
1111
github.com/pkg/errors v0.9.1
12-
k8s.io/api v0.17.12
13-
k8s.io/apimachinery v0.17.12
14-
k8s.io/client-go v0.17.12
12+
k8s.io/api v0.17.17
13+
k8s.io/apimachinery v0.17.17
14+
k8s.io/client-go v0.17.17
1515
k8s.io/klog/v2 v2.0.0
16-
k8s.io/utils v0.0.0-20201015054608-420da100c033
17-
sigs.k8s.io/cluster-api v0.3.12
16+
k8s.io/utils v0.0.0-20201110183641-67b214c5f920
17+
sigs.k8s.io/cluster-api v0.3.16
1818
sigs.k8s.io/controller-runtime v0.5.14
1919
)

0 commit comments

Comments
 (0)