Skip to content

Commit aa2d794

Browse files
committed
Bump k8s deps to 1.26.3
Signed-off-by: Andy Goldstein <andy.goldstein@redhat.com>
1 parent 10f1e74 commit aa2d794

File tree

3 files changed

+39
-174
lines changed

3 files changed

+39
-174
lines changed

Makefile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,13 +29,13 @@ GOLANGCI_LINT_VER := v1.49.0
2929
GOLANGCI_LINT_BIN := golangci-lint
3030
GOLANGCI_LINT := $(GOBIN_DIR)/$(GOLANGCI_LINT_BIN)-$(GOLANGCI_LINT_VER)
3131

32-
KUBE_CLIENT_GEN_VER := v0.24.0
32+
KUBE_CLIENT_GEN_VER := v0.26.3
3333
KUBE_CLIENT_GEN_BIN := client-gen
34-
KUBE_LISTER_GEN_VER := v0.24.0
34+
KUBE_LISTER_GEN_VER := v0.26.3
3535
KUBE_LISTER_GEN_BIN := lister-gen
36-
KUBE_INFORMER_GEN_VER := v0.24.0
36+
KUBE_INFORMER_GEN_VER := v0.26.3
3737
KUBE_INFORMER_GEN_BIN := informer-gen
38-
KUBE_APPLYCONFIGURATION_GEN_VER := 17196dab71c687a3b7a18b405b7fb5331cffe14b
38+
KUBE_APPLYCONFIGURATION_GEN_VER := v0.26.3
3939
KUBE_APPLYCONFIGURATION_GEN_BIN := applyconfiguration-gen
4040

4141
KUBE_CLIENT_GEN := $(GOBIN_DIR)/$(KUBE_CLIENT_GEN_BIN)-$(KUBE_CLIENT_GEN_VER)

go.mod

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -4,30 +4,30 @@ go 1.19
44

55
require (
66
github.com/onsi/ginkgo v1.16.5
7-
github.com/onsi/gomega v1.20.1
7+
github.com/onsi/gomega v1.23.0
88
github.com/spf13/cobra v1.4.0
99
github.com/spf13/pflag v1.0.5
10-
golang.org/x/tools v0.1.12
11-
k8s.io/apimachinery v0.25.0
12-
k8s.io/code-generator v0.24.3
13-
k8s.io/gengo v0.0.0-20211129171323-c02415ce4185
14-
k8s.io/klog/v2 v2.70.1
10+
golang.org/x/tools v0.2.0
11+
k8s.io/apimachinery v0.26.3
12+
k8s.io/code-generator v0.26.3
13+
k8s.io/gengo v0.0.0-20220902162205-c0856e24416d
14+
k8s.io/klog/v2 v2.80.1
1515
sigs.k8s.io/controller-tools v0.8.0
1616
)
1717

1818
require (
1919
github.com/fatih/color v1.12.0 // indirect
2020
github.com/fsnotify/fsnotify v1.4.9 // indirect
2121
github.com/go-logr/logr v1.2.3 // indirect
22-
github.com/google/go-cmp v0.5.8 // indirect
22+
github.com/google/go-cmp v0.5.9 // indirect
2323
github.com/inconshreveable/mousetrap v1.0.0 // indirect
2424
github.com/mattn/go-colorable v0.1.8 // indirect
2525
github.com/mattn/go-isatty v0.0.12 // indirect
2626
github.com/nxadm/tail v1.4.8 // indirect
27-
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
28-
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
29-
golang.org/x/sys v0.0.0-20220722155257-8c9f86f7a55f // indirect
30-
golang.org/x/text v0.3.7 // indirect
27+
golang.org/x/mod v0.6.0 // indirect
28+
golang.org/x/net v0.7.0 // indirect
29+
golang.org/x/sys v0.5.0 // indirect
30+
golang.org/x/text v0.7.0 // indirect
3131
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
3232
gopkg.in/yaml.v2 v2.4.0 // indirect
3333
gopkg.in/yaml.v3 v3.0.1 // indirect

0 commit comments

Comments
 (0)