-
Notifications
You must be signed in to change notification settings - Fork 594
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update dependencies, and skip revive rules
- Loading branch information
Showing
4 changed files
with
351 additions
and
1,345 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,154 +1,150 @@ | ||
module github.com/rancher/rke | ||
|
||
go 1.19 | ||
go 1.20 | ||
|
||
replace ( | ||
github.com/knative/pkg => github.com/rancher/pkg v0.0.0-20190514055449-b30ab9de040e | ||
k8s.io/client-go => k8s.io/client-go v0.25.12 | ||
k8s.io/client-go => k8s.io/client-go v0.27.4 | ||
sigs.k8s.io/json => sigs.k8s.io/json v0.0.0-20211208200746-9f7c6b3444d2 | ||
) | ||
|
||
require ( | ||
github.com/Masterminds/sprig/v3 v3.2.2 | ||
github.com/apparentlymart/go-cidr v1.0.1 | ||
github.com/aws/aws-sdk-go v1.38.65 | ||
github.com/Masterminds/sprig/v3 v3.2.3 | ||
github.com/apparentlymart/go-cidr v1.1.0 | ||
github.com/aws/aws-sdk-go v1.44.272 | ||
github.com/blang/semver v3.5.1+incompatible | ||
github.com/coreos/go-semver v0.3.0 | ||
github.com/coreos/go-semver v0.3.1 | ||
github.com/docker/distribution v2.8.2+incompatible | ||
github.com/docker/docker v20.10.24+incompatible | ||
github.com/docker/docker v24.0.2+incompatible | ||
github.com/docker/go-connections v0.4.0 | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/go-bindata/go-bindata v3.1.2+incompatible | ||
github.com/go-ini/ini v1.37.0 | ||
github.com/mattn/go-colorable v0.1.8 | ||
github.com/mcuadros/go-version v0.0.0-20180611085657-6d5863ca60fa | ||
github.com/go-ini/ini v1.67.0 | ||
github.com/mattn/go-colorable v0.1.13 | ||
github.com/mcuadros/go-version v0.0.0-20190830083331-035f6764e8d2 | ||
github.com/pkg/errors v0.9.1 | ||
github.com/rancher/norman v0.0.0-20221205184727-32ef2e185b99 | ||
github.com/sirupsen/logrus v1.8.1 | ||
github.com/stretchr/testify v1.8.0 | ||
github.com/urfave/cli v1.22.2 | ||
go.etcd.io/etcd/client/v2 v2.305.4 | ||
go.etcd.io/etcd/client/v3 v3.5.4 | ||
golang.org/x/crypto v0.0.0-20220411220226-7b82a4e95df4 | ||
golang.org/x/sync v0.1.0 | ||
google.golang.org/grpc v1.53.0 | ||
github.com/rancher/norman v0.0.0-20230428185400-96b95e3475e0 | ||
github.com/sirupsen/logrus v1.9.2 | ||
github.com/stretchr/testify v1.8.2 | ||
github.com/urfave/cli v1.22.13 | ||
go.etcd.io/etcd/client/v2 v2.305.9 | ||
go.etcd.io/etcd/client/v3 v3.5.9 | ||
golang.org/x/crypto v0.11.0 | ||
golang.org/x/sync v0.2.0 | ||
google.golang.org/grpc v1.55.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
k8s.io/api v0.25.12 | ||
k8s.io/apimachinery v0.25.12 | ||
k8s.io/apiserver v0.25.12 | ||
k8s.io/client-go v0.25.12 | ||
k8s.io/gengo v0.0.0-20211129171323-c02415ce4185 | ||
k8s.io/kubectl v0.25.12 | ||
k8s.io/kubernetes v1.25.12 | ||
k8s.io/pod-security-admission v0.25.12 | ||
k8s.io/api v0.27.4 | ||
k8s.io/apimachinery v0.27.4 | ||
k8s.io/apiserver v0.27.4 | ||
k8s.io/client-go v1.5.2 | ||
k8s.io/gengo v0.0.0-20230306165830-ab3349d207d4 | ||
k8s.io/kubectl v0.27.4 | ||
k8s.io/kubernetes v1.15.0-alpha.0 | ||
k8s.io/pod-security-admission v0.27.4 | ||
sigs.k8s.io/yaml v1.3.0 | ||
) | ||
|
||
require ( | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect | ||
github.com/MakeNowJust/heredoc v1.0.0 // indirect | ||
github.com/Masterminds/goutils v1.1.1 // indirect | ||
github.com/Masterminds/semver/v3 v3.1.1 // indirect | ||
github.com/Microsoft/go-winio v0.5.2 // indirect | ||
github.com/Microsoft/hcsshim v0.9.3 // indirect | ||
github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
github.com/Masterminds/semver/v3 v3.2.1 // indirect | ||
github.com/Microsoft/go-winio v0.6.1 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/blang/semver/v4 v4.0.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/chai2010/gettext-go v1.0.2 // indirect | ||
github.com/containerd/cgroups v1.0.4 // indirect | ||
github.com/containerd/containerd v1.5.18 // indirect | ||
github.com/coreos/go-systemd/v22 v22.3.2 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.1 // indirect | ||
github.com/containerd/containerd v1.7.1 // indirect | ||
github.com/coreos/go-systemd/v22 v22.5.0 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/docker/go-units v0.4.0 // indirect | ||
github.com/emicklei/go-restful/v3 v3.8.0 // indirect | ||
github.com/evanphx/json-patch v4.12.0+incompatible // indirect | ||
github.com/exponent-io/jsonpath v0.0.0-20151013193312-d6023ce2651d // indirect | ||
github.com/go-errors/errors v1.0.1 // indirect | ||
github.com/go-logr/logr v1.2.3 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.5 // indirect | ||
github.com/go-openapi/jsonreference v0.19.5 // indirect | ||
github.com/go-openapi/swag v0.19.14 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/emicklei/go-restful/v3 v3.10.2 // indirect | ||
github.com/evanphx/json-patch v5.6.0+incompatible // indirect | ||
github.com/exponent-io/jsonpath v0.0.0-20210407135951-1de76d718b3f // indirect | ||
github.com/go-errors/errors v1.4.2 // indirect | ||
github.com/go-logr/logr v1.2.4 // indirect | ||
github.com/go-openapi/jsonpointer v0.19.6 // indirect | ||
github.com/go-openapi/jsonreference v0.20.2 // indirect | ||
github.com/go-openapi/swag v0.22.3 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.2 // indirect | ||
github.com/google/btree v1.0.1 // indirect | ||
github.com/google/gnostic v0.5.7-v3refs // indirect | ||
github.com/golang/protobuf v1.5.3 // indirect | ||
github.com/google/btree v1.1.2 // indirect | ||
github.com/google/gnostic v0.6.9 // indirect | ||
github.com/google/go-cmp v0.5.9 // indirect | ||
github.com/google/gofuzz v1.1.0 // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/shlex v0.0.0-20191202100458-e7afc7fbc510 // indirect | ||
github.com/google/uuid v1.3.0 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20191106031601-ce3c9ade29de // indirect | ||
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect | ||
github.com/huandu/xstrings v1.3.1 // indirect | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/inconshreveable/mousetrap v1.0.0 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect | ||
github.com/huandu/xstrings v1.4.0 // indirect | ||
github.com/imdario/mergo v0.3.16 // indirect | ||
github.com/inconshreveable/mousetrap v1.1.0 // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.12 // indirect | ||
github.com/klauspost/compress v1.16.5 // indirect | ||
github.com/liggitt/tabwriter v0.0.0-20181228230101-89fcab3d43de // indirect | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/mailru/easyjson v0.7.7 // indirect | ||
github.com/mattn/go-isatty v0.0.19 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.4 // indirect | ||
github.com/mitchellh/copystructure v1.0.0 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.0 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.0 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/moby/patternmatcher v0.5.0 // indirect | ||
github.com/moby/spdystream v0.2.0 // indirect | ||
github.com/moby/sys/mount v0.2.0 // indirect | ||
github.com/moby/sys/mountinfo v0.6.2 // indirect | ||
github.com/moby/term v0.0.0-20210619224110-3f7ff695adc6 // indirect | ||
github.com/moby/sys/sequential v0.5.0 // indirect | ||
github.com/moby/term v0.5.0 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.2 // indirect | ||
github.com/monochromegane/go-gitignore v0.0.0-20200626010858-205db1a8cc00 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.0.2 // indirect | ||
github.com/opencontainers/runc v1.1.6 // indirect | ||
github.com/opencontainers/image-spec v1.1.0-rc3 // indirect | ||
github.com/opencontainers/runc v1.1.7 // indirect | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_golang v1.12.1 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.32.1 // indirect | ||
github.com/prometheus/procfs v0.7.3 // indirect | ||
github.com/rancher/lasso v0.0.0-20221202205459-e7138f16489c // indirect | ||
github.com/rancher/wrangler v1.0.1-0.20221202234327-1cafffeaa9a1 // indirect | ||
github.com/russross/blackfriday v1.5.2 // indirect | ||
github.com/prometheus/client_golang v1.15.1 // indirect | ||
github.com/prometheus/client_model v0.4.0 // indirect | ||
github.com/prometheus/common v0.44.0 // indirect | ||
github.com/prometheus/procfs v0.10.1 // indirect | ||
github.com/rancher/lasso v0.0.0-20230629200414-8a54b32e6792 // indirect | ||
github.com/rancher/wrangler v1.1.1 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/shopspring/decimal v1.2.0 // indirect | ||
github.com/smartystreets/assertions v1.0.1 // indirect | ||
github.com/spf13/cast v1.3.1 // indirect | ||
github.com/spf13/cobra v1.4.0 // indirect | ||
github.com/shopspring/decimal v1.3.1 // indirect | ||
github.com/spf13/cast v1.5.1 // indirect | ||
github.com/spf13/cobra v1.7.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/xlab/treeprint v1.1.0 // indirect | ||
go.etcd.io/etcd/api/v3 v3.5.4 // indirect | ||
go.etcd.io/etcd/client/pkg/v3 v3.5.4 // indirect | ||
go.opencensus.io v0.23.0 // indirect | ||
go.starlark.net v0.0.0-20200306205701-8dd3e2ee1dd5 // indirect | ||
go.uber.org/atomic v1.7.0 // indirect | ||
go.uber.org/multierr v1.6.0 // indirect | ||
go.uber.org/zap v1.19.0 // indirect | ||
golang.org/x/mod v0.8.0 // indirect | ||
golang.org/x/net v0.8.0 // indirect | ||
golang.org/x/oauth2 v0.4.0 // indirect | ||
golang.org/x/sys v0.6.0 // indirect | ||
golang.org/x/term v0.6.0 // indirect | ||
golang.org/x/text v0.8.0 // indirect | ||
golang.org/x/time v0.0.0-20220210224613-90d013bbcef8 // indirect | ||
golang.org/x/tools v0.6.0 // indirect | ||
github.com/xlab/treeprint v1.2.0 // indirect | ||
go.etcd.io/etcd/api/v3 v3.5.9 // indirect | ||
go.etcd.io/etcd/client/pkg/v3 v3.5.9 // indirect | ||
go.starlark.net v0.0.0-20230525235612-a134d8f9ddca // indirect | ||
go.uber.org/atomic v1.11.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
go.uber.org/zap v1.24.0 // indirect | ||
golang.org/x/mod v0.10.0 // indirect | ||
golang.org/x/net v0.12.0 // indirect | ||
golang.org/x/oauth2 v0.8.0 // indirect | ||
golang.org/x/sys v0.10.0 // indirect | ||
golang.org/x/term v0.10.0 // indirect | ||
golang.org/x/text v0.11.0 // indirect | ||
golang.org/x/time v0.3.0 // indirect | ||
golang.org/x/tools v0.9.1 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20230110181048-76db0878b65f // indirect | ||
google.golang.org/protobuf v1.28.1 // indirect | ||
google.golang.org/genproto v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect | ||
google.golang.org/protobuf v1.30.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
k8s.io/cli-runtime v0.25.12 // indirect | ||
k8s.io/component-base v0.25.12 // indirect | ||
k8s.io/klog/v2 v2.70.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20220803162953-67bda5d908f1 // indirect | ||
k8s.io/utils v0.0.0-20220728103510-ee6ede2d64ed // indirect | ||
sigs.k8s.io/json v0.0.0-20220713155537-f223a00ba0e2 // indirect | ||
sigs.k8s.io/kustomize/api v0.12.1 // indirect | ||
sigs.k8s.io/kustomize/kyaml v0.13.9 // indirect | ||
gotest.tools/v3 v3.4.0 // indirect | ||
k8s.io/cli-runtime v0.27.4 // indirect | ||
k8s.io/component-base v0.27.4 // indirect | ||
k8s.io/klog/v2 v2.100.1 // indirect | ||
k8s.io/kube-openapi v0.0.0-20230530175149-33f04d5d6b58 // indirect | ||
k8s.io/utils v0.0.0-20230505201702-9f6742963106 // indirect | ||
sigs.k8s.io/json v0.0.0-20221116044647-bc3834ca7abd // indirect | ||
sigs.k8s.io/kustomize/api v0.13.4 // indirect | ||
sigs.k8s.io/kustomize/kyaml v0.14.2 // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.2.3 // indirect | ||
) |
Oops, something went wrong.