Skip to content

Commit 07d31bf

Browse files
committed
Add controller-gen as a dependency
Steps: - Modified tools.go - go get sigs.k8s.io/controller-tools/cmd/controller-gen - go mod tidy; go mod vendor Signed-off-by: Patryk Diak <[email protected]>
1 parent d035fdd commit 07d31bf

File tree

209 files changed

+45791
-14397
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

209 files changed

+45791
-14397
lines changed

Diff for: go.mod

+15-11
Original file line numberDiff line numberDiff line change
@@ -10,16 +10,16 @@ require (
1010
github.com/containernetworking/cni v0.8.0
1111
github.com/ghodss/yaml v1.0.1-0.20190212211648-25d852aebe32
1212
github.com/go-bindata/go-bindata v3.1.2+incompatible
13-
github.com/onsi/gomega v1.32.0
13+
github.com/onsi/gomega v1.33.0
1414
github.com/openshift/build-machinery-go v0.0.0-20240613134303-8359781da660
1515
github.com/pkg/errors v0.9.1
1616
github.com/prometheus/client_golang v1.16.0
17-
github.com/spf13/cobra v1.7.0
17+
github.com/spf13/cobra v1.8.0
1818
github.com/spf13/pflag v1.0.6-0.20210604193023-d5e0c0615ace
1919
github.com/stretchr/testify v1.8.4
2020
github.com/vishvananda/netlink v1.1.0
2121
github.com/vishvananda/netns v0.0.0-20200728191858-db3c7e526aae // indirect
22-
golang.org/x/net v0.23.0
22+
golang.org/x/net v0.24.0
2323
gopkg.in/yaml.v2 v2.4.0
2424
k8s.io/api v0.30.2
2525
k8s.io/apimachinery v0.30.2
@@ -85,15 +85,15 @@ require (
8585
go.opentelemetry.io/proto/otlp v1.0.0 // indirect
8686
go.uber.org/multierr v1.11.0 // indirect
8787
go.uber.org/zap v1.26.0 // indirect
88-
golang.org/x/crypto v0.21.0 // indirect
89-
golang.org/x/mod v0.15.0 // indirect
88+
golang.org/x/crypto v0.22.0 // indirect
89+
golang.org/x/mod v0.17.0 // indirect
9090
golang.org/x/oauth2 v0.12.0 // indirect
91-
golang.org/x/sync v0.6.0 // indirect
92-
golang.org/x/sys v0.18.0 // indirect
93-
golang.org/x/term v0.18.0 // indirect
91+
golang.org/x/sync v0.7.0 // indirect
92+
golang.org/x/sys v0.19.0 // indirect
93+
golang.org/x/term v0.19.0 // indirect
9494
golang.org/x/text v0.14.0 // indirect
9595
golang.org/x/time v0.3.0 // indirect
96-
golang.org/x/tools v0.18.0 // indirect
96+
golang.org/x/tools v0.20.0 // indirect
9797
gomodules.xyz/jsonpatch/v2 v2.4.0 // indirect
9898
google.golang.org/appengine v1.6.7 // indirect
9999
google.golang.org/genproto v0.0.0-20230803162519-f966b187b2e5 // indirect
@@ -107,7 +107,7 @@ require (
107107
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect
108108
sigs.k8s.io/kube-storage-version-migrator v0.0.6-0.20230721195810-5c8923c5ff96 // indirect
109109
sigs.k8s.io/structured-merge-diff/v4 v4.4.1 // indirect
110-
sigs.k8s.io/yaml v1.3.0 // indirect
110+
sigs.k8s.io/yaml v1.4.0 // indirect
111111
)
112112

113113
require (
@@ -117,6 +117,7 @@ require (
117117
github.com/openshift/machine-config-operator v0.0.1-0.20231002195040-a2469941c0dc
118118
k8s.io/apiextensions-apiserver v0.30.2
119119
k8s.io/client-go v0.30.2
120+
sigs.k8s.io/controller-tools v0.15.0
120121
)
121122

122123
require (
@@ -136,12 +137,15 @@ require (
136137
github.com/coreos/vcontext v0.0.0-20230201181013-d72178a18687 // indirect
137138
github.com/emicklei/go-restful/v3 v3.11.0 // indirect
138139
github.com/evanphx/json-patch/v5 v5.9.0 // indirect
140+
github.com/fatih/color v1.16.0 // indirect
139141
github.com/go-logr/stdr v1.2.2 // indirect
142+
github.com/gobuffalo/flect v1.0.2 // indirect
140143
github.com/google/btree v1.1.2 // indirect
141144
github.com/google/cel-go v0.17.8 // indirect
142145
github.com/google/gnostic-models v0.6.8 // indirect
143146
github.com/grpc-ecosystem/grpc-gateway/v2 v2.16.0 // indirect
144-
github.com/onsi/ginkgo v1.16.5 // indirect
147+
github.com/mattn/go-colorable v0.1.13 // indirect
148+
github.com/mattn/go-isatty v0.0.20 // indirect
145149
github.com/shopspring/decimal v1.3.1 // indirect
146150
github.com/spf13/cast v1.5.1 // indirect
147151
github.com/stoewer/go-strcase v1.3.0 // indirect

Diff for: go.sum

+34-53
Large diffs are not rendered by default.

Diff for: tools.go

+2
Original file line numberDiff line numberDiff line change
@@ -9,4 +9,6 @@ import (
99
_ "github.com/openshift/api/cloudnetwork/v1/zz_generated.crd-manifests"
1010
_ "github.com/openshift/api/networkoperator/v1/zz_generated.crd-manifests"
1111
_ "github.com/openshift/api/operator/v1/zz_generated.crd-manifests"
12+
// dependency of generating CRD for install-config
13+
_ "sigs.k8s.io/controller-tools/cmd/controller-gen"
1214
)

Diff for: vendor/github.com/fatih/color/LICENSE.md

+20
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Diff for: vendor/github.com/fatih/color/README.md

+176
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)