Skip to content

Commit 0263c53

Browse files
committed
bump dependencies and update docs
Signed-off-by: Erik Godding Boye <[email protected]>
1 parent c1857de commit 0263c53

File tree

6 files changed

+263
-266
lines changed

6 files changed

+263
-266
lines changed

README.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,4 @@
1-
# webhook-cert-lib
1+
# cert-manager webhook-cert-lib
2+
3+
Note: This project is under development and will be changed without notice.
4+
Do NOT use in production!

TODO

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
1-
- maybe remove dependency on controller-runtime (use client-go directly instead)
1+
MUST:
22
- make sure to re-reconcile certificates before they expire
3-
- Can we make the solution leader-election-less? Does it make sense that we use the existing cr leader election or should we create a seperate leader-election just for the logic in this library?
43
- Scope down controller RBAC to single CA Secret resource.
54
- Use cli flags in the program to list the injectables, allowing use to scope down the injectable RBAC.
5+
6+
CONSIDER:
7+
- maybe remove dependency on controller-runtime (use client-go directly instead)
8+
- maybe support all controller-runtime Server types: webhook and metrics (might require rebranding)
9+
- Can we make the solution leader-election-less? Does it make sense that we use the existing cr leader election or should we create a separate leader-election just for the logic in this library?

go.mod

Lines changed: 39 additions & 39 deletions
Original file line numberDiff line numberDiff line change
@@ -1,66 +1,66 @@
11
module github.com/cert-manager/webhook-cert-lib
22

3-
go 1.22.0
3+
go 1.23.0
4+
5+
toolchain go1.24.2
46

57
require (
68
github.com/go-logr/logr v1.4.2
7-
k8s.io/api v0.31.3
8-
k8s.io/apimachinery v0.31.3
9-
k8s.io/client-go v0.31.3
10-
k8s.io/utils v0.0.0-20241104163129-6fe5fd82f078
11-
sigs.k8s.io/controller-runtime v0.19.2
9+
k8s.io/api v0.32.3
10+
k8s.io/apimachinery v0.32.3
11+
k8s.io/client-go v0.32.3
12+
k8s.io/utils v0.0.0-20250321185631-1f6e0b77f77e
13+
sigs.k8s.io/controller-runtime v0.20.4
1214
)
1315

1416
require (
1517
github.com/beorn7/perks v1.0.1 // indirect
1618
github.com/cespare/xxhash/v2 v2.3.0 // indirect
1719
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect
18-
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
19-
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
20-
github.com/fsnotify/fsnotify v1.7.0 // indirect
21-
github.com/fxamacker/cbor/v2 v2.7.0 // indirect
22-
github.com/go-openapi/jsonpointer v0.19.6 // indirect
23-
github.com/go-openapi/jsonreference v0.20.2 // indirect
24-
github.com/go-openapi/swag v0.22.4 // indirect
20+
github.com/emicklei/go-restful/v3 v3.12.2 // indirect
21+
github.com/evanphx/json-patch/v5 v5.9.11 // indirect
22+
github.com/fsnotify/fsnotify v1.9.0 // indirect
23+
github.com/fxamacker/cbor/v2 v2.8.0 // indirect
24+
github.com/go-openapi/jsonpointer v0.21.1 // indirect
25+
github.com/go-openapi/jsonreference v0.21.0 // indirect
26+
github.com/go-openapi/swag v0.23.1 // indirect
2527
github.com/gogo/protobuf v1.3.2 // indirect
26-
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
2728
github.com/golang/protobuf v1.5.4 // indirect
28-
github.com/google/gnostic-models v0.6.8 // indirect
29-
github.com/google/go-cmp v0.6.0 // indirect
29+
github.com/google/btree v1.1.3 // indirect
30+
github.com/google/gnostic-models v0.6.9 // indirect
31+
github.com/google/go-cmp v0.7.0 // indirect
3032
github.com/google/gofuzz v1.2.0 // indirect
3133
github.com/google/uuid v1.6.0 // indirect
32-
github.com/imdario/mergo v0.3.6 // indirect
3334
github.com/josharian/intern v1.0.0 // indirect
3435
github.com/json-iterator/go v1.1.12 // indirect
35-
github.com/mailru/easyjson v0.7.7 // indirect
36+
github.com/mailru/easyjson v0.9.0 // indirect
3637
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
3738
github.com/modern-go/reflect2 v1.0.2 // indirect
3839
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect
39-
github.com/onsi/ginkgo/v2 v2.22.0 // indirect
40-
github.com/onsi/gomega v1.36.0 // indirect
4140
github.com/pkg/errors v0.9.1 // indirect
42-
github.com/prometheus/client_golang v1.19.1 // indirect
43-
github.com/prometheus/client_model v0.6.1 // indirect
44-
github.com/prometheus/common v0.55.0 // indirect
45-
github.com/prometheus/procfs v0.15.1 // indirect
46-
github.com/spf13/pflag v1.0.5 // indirect
41+
github.com/prometheus/client_golang v1.22.0 // indirect
42+
github.com/prometheus/client_model v0.6.2 // indirect
43+
github.com/prometheus/common v0.63.0 // indirect
44+
github.com/prometheus/procfs v0.16.0 // indirect
45+
github.com/spf13/pflag v1.0.6 // indirect
4746
github.com/x448/float16 v0.8.4 // indirect
48-
golang.org/x/exp v0.0.0-20230515195305-f3d0a9c9a5cc // indirect
49-
golang.org/x/net v0.30.0 // indirect
50-
golang.org/x/oauth2 v0.21.0 // indirect
51-
golang.org/x/sys v0.26.0 // indirect
52-
golang.org/x/term v0.25.0 // indirect
53-
golang.org/x/text v0.19.0 // indirect
54-
golang.org/x/time v0.3.0 // indirect
55-
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
56-
google.golang.org/protobuf v1.35.1 // indirect
47+
golang.org/x/net v0.39.0 // indirect
48+
golang.org/x/oauth2 v0.29.0 // indirect
49+
golang.org/x/sync v0.13.0 // indirect
50+
golang.org/x/sys v0.32.0 // indirect
51+
golang.org/x/term v0.31.0 // indirect
52+
golang.org/x/text v0.24.0 // indirect
53+
golang.org/x/time v0.11.0 // indirect
54+
gomodules.xyz/jsonpatch/v2 v2.5.0 // indirect
55+
google.golang.org/protobuf v1.36.6 // indirect
56+
gopkg.in/evanphx/json-patch.v4 v4.12.0 // indirect
5757
gopkg.in/inf.v0 v0.9.1 // indirect
58-
gopkg.in/yaml.v2 v2.4.0 // indirect
5958
gopkg.in/yaml.v3 v3.0.1 // indirect
60-
k8s.io/apiextensions-apiserver v0.31.0 // indirect
59+
k8s.io/apiextensions-apiserver v0.32.3 // indirect
6160
k8s.io/klog/v2 v2.130.1 // indirect
62-
k8s.io/kube-openapi v0.0.0-20240228011516-70dd3763d340 // indirect
63-
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
64-
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
61+
k8s.io/kube-openapi v0.0.0-20250318190949-c8a335a9a2ff // indirect
62+
sigs.k8s.io/json v0.0.0-20241014173422-cfa47c3a1cc8 // indirect
63+
sigs.k8s.io/randfill v1.0.0 // indirect
64+
sigs.k8s.io/structured-merge-diff/v4 v4.7.0 // indirect
6565
sigs.k8s.io/yaml v1.4.0 // indirect
6666
)

0 commit comments

Comments
 (0)