Skip to content

Commit 34ffa38

Browse files
authored
Merge pull request #19 from wallrj/cert-manager-1.7
Update to cert-manager 1.7
2 parents fe9b5ef + 714937d commit 34ffa38

File tree

6 files changed

+1093
-194
lines changed

6 files changed

+1093
-194
lines changed

example/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ func main() {
112112
Client: cmclient.NewForConfigOrDie(restConfig),
113113
MetadataReader: store,
114114
Clock: clock.RealClock{},
115-
Log: log,
115+
Log: &log,
116116
NodeID: *nodeID,
117117
GeneratePrivateKey: (&keygen{store: store}).generatePrivateKey,
118118
GenerateRequest: generateRequest,

go.mod

Lines changed: 45 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,53 @@
11
module github.com/cert-manager/csi-lib
22

3-
go 1.16
3+
go 1.17
44

55
require (
66
github.com/container-storage-interface/spec v1.4.0
7-
github.com/go-logr/logr v0.4.0
8-
github.com/golang/protobuf v1.5.2 // indirect
9-
github.com/jetstack/cert-manager v1.3.1
7+
github.com/go-logr/logr v1.2.0
8+
github.com/jetstack/cert-manager v1.7.1
109
github.com/kubernetes-csi/csi-lib-utils v0.9.1
11-
github.com/stretchr/testify v1.6.1
12-
golang.org/x/net v0.0.0-20210224082022-3d97a244fca7
13-
google.golang.org/grpc v1.37.0
14-
k8s.io/apimachinery v0.21.0
15-
k8s.io/client-go v0.21.0
16-
k8s.io/klog/v2 v2.8.0
10+
github.com/stretchr/testify v1.7.0
11+
golang.org/x/net v0.0.0-20211209124913-491a49abca63
12+
google.golang.org/grpc v1.43.0
13+
k8s.io/apimachinery v0.23.1
14+
k8s.io/client-go v0.23.1
15+
k8s.io/klog/v2 v2.30.0
1716
k8s.io/mount-utils v0.21.0
18-
k8s.io/utils v0.0.0-20201110183641-67b214c5f920
17+
k8s.io/utils v0.0.0-20210930125809-cb0fa318a74b
18+
)
19+
20+
require (
21+
github.com/davecgh/go-spew v1.1.1 // indirect
22+
github.com/evanphx/json-patch v4.12.0+incompatible // indirect
23+
github.com/gogo/protobuf v1.3.2 // indirect
24+
github.com/golang/protobuf v1.5.2 // indirect
25+
github.com/google/go-cmp v0.5.6 // indirect
26+
github.com/google/gofuzz v1.2.0 // indirect
27+
github.com/google/uuid v1.3.0 // indirect
28+
github.com/googleapis/gnostic v0.5.5 // indirect
29+
github.com/json-iterator/go v1.1.12 // indirect
30+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
31+
github.com/modern-go/reflect2 v1.0.2 // indirect
32+
github.com/pkg/errors v0.9.1 // indirect
33+
github.com/pmezard/go-difflib v1.0.0 // indirect
34+
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f // indirect
35+
golang.org/x/sys v0.0.0-20211216021012-1d35b9e2eb4e // indirect
36+
golang.org/x/term v0.0.0-20210615171337-6886f2dfbf5b // indirect
37+
golang.org/x/text v0.3.7 // indirect
38+
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect
39+
google.golang.org/appengine v1.6.7 // indirect
40+
google.golang.org/genproto v0.0.0-20220118154757-00ab72f36ad5 // indirect
41+
google.golang.org/protobuf v1.27.1 // indirect
42+
gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect
43+
gopkg.in/inf.v0 v0.9.1 // indirect
44+
gopkg.in/yaml.v2 v2.4.0 // indirect
45+
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
46+
k8s.io/api v0.23.1 // indirect
47+
k8s.io/apiextensions-apiserver v0.23.1 // indirect
48+
k8s.io/kube-aggregator v0.23.1 // indirect
49+
k8s.io/kube-openapi v0.0.0-20211115234752-e816edb12b65 // indirect
50+
sigs.k8s.io/json v0.0.0-20211020170558-c049b76a60c6 // indirect
51+
sigs.k8s.io/structured-merge-diff/v4 v4.2.0 // indirect
52+
sigs.k8s.io/yaml v1.3.0 // indirect
1953
)

0 commit comments

Comments
 (0)