-
Notifications
You must be signed in to change notification settings - Fork 120
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: Update versions of tools and libraries
Including updated base image with go 1.17 (cherry picked from internal commit 76e18e9c18487591b308e47dbf3badcbad32998a)
- Loading branch information
Showing
9 changed files
with
250 additions
and
121 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
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,39 +1,108 @@ | ||
module github.com/kserve/modelmesh-serving | ||
|
||
go 1.16 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/dereklstinson/cifar v0.0.0-20200421171932-5722a3b6a0c7 | ||
github.com/go-logr/logr v0.4.0 | ||
github.com/golang/protobuf v1.5.2 | ||
github.com/google/go-cmp v0.5.6 | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect | ||
github.com/manifestival/controller-runtime-client v0.4.0 | ||
github.com/manifestival/manifestival v0.7.0 | ||
github.com/moverest/mnist v0.0.0-20160628192128-ec5d9d203b59 | ||
github.com/onsi/ginkgo v1.16.4 | ||
github.com/onsi/gomega v1.14.0 | ||
github.com/operator-framework/operator-lib v0.6.0 | ||
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.49.0 | ||
github.com/prometheus/common v0.30.0 // indirect | ||
github.com/prometheus/procfs v0.7.1 // indirect | ||
github.com/onsi/gomega v1.15.0 | ||
github.com/operator-framework/operator-lib v0.8.0 | ||
github.com/prometheus-operator/prometheus-operator/pkg/apis/monitoring v0.52.0 | ||
github.com/spf13/viper v1.7.1 | ||
github.com/stretchr/testify v1.7.0 | ||
github.com/tommy351/goldga v0.3.0 | ||
go.etcd.io/etcd/api/v3 v3.5.0 | ||
go.etcd.io/etcd/client/v3 v3.5.0 | ||
golang.org/x/net v0.0.0-20210726213435-c6fcb2dbf985 // indirect | ||
google.golang.org/genproto v0.0.0-20210728212813-7823e685a01f // indirect | ||
google.golang.org/grpc v1.39.0 | ||
go.etcd.io/etcd/api/v3 v3.5.1 | ||
go.etcd.io/etcd/client/v3 v3.5.1 | ||
google.golang.org/grpc v1.42.0 | ||
google.golang.org/protobuf v1.27.1 | ||
k8s.io/api v0.21.3 | ||
k8s.io/apimachinery v0.21.3 | ||
k8s.io/client-go v0.21.3 | ||
k8s.io/kube-openapi v0.0.0-20210305164622-f622666832c1 // indirect | ||
sigs.k8s.io/controller-runtime v0.9.5 | ||
k8s.io/api v0.22.3 | ||
k8s.io/apimachinery v0.22.3 | ||
k8s.io/client-go v0.22.3 | ||
k8s.io/klog v1.0.0 | ||
k8s.io/kube-openapi v0.0.0-20211021173138-95a400baf1a0 | ||
sigs.k8s.io/controller-runtime v0.10.2 | ||
sigs.k8s.io/yaml v1.2.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go v0.65.0 // indirect | ||
github.com/BurntSushi/toml v0.3.1 // indirect | ||
github.com/PuerkitoBio/purell v1.1.1 // indirect | ||
github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect | ||
github.com/andreyvit/diff v0.0.0-20170406064948-c7f18ee00883 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.1.1 // indirect | ||
github.com/coreos/go-semver v0.3.0 // indirect | ||
github.com/coreos/go-systemd/v22 v22.3.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/emicklei/go-restful v2.9.5+incompatible // indirect | ||
github.com/evanphx/json-patch v4.11.0+incompatible // indirect | ||
github.com/evanphx/json-patch/v5 v5.2.0 // indirect | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/go-logr/zapr v0.4.0 // 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/gogo/protobuf v1.3.2 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/google/gofuzz v1.2.0 // indirect | ||
github.com/google/uuid v1.2.0 // indirect | ||
github.com/googleapis/gnostic v0.5.5 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/imdario/mergo v0.3.12 // indirect | ||
github.com/josharian/intern v1.0.0 // indirect | ||
github.com/json-iterator/go v1.1.11 // indirect | ||
github.com/logrusorgru/aurora v2.0.3+incompatible // indirect | ||
github.com/magiconair/properties v1.8.1 // indirect | ||
github.com/mailru/easyjson v0.7.6 // indirect | ||
github.com/mattn/go-isatty v0.0.12 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect | ||
github.com/mitchellh/mapstructure v1.1.2 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/nxadm/tail v1.4.8 // indirect | ||
github.com/pelletier/go-toml v1.2.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_golang v1.11.0 // indirect | ||
github.com/prometheus/client_model v0.2.0 // indirect | ||
github.com/prometheus/common v0.30.0 // indirect | ||
github.com/prometheus/procfs v0.7.1 // indirect | ||
github.com/sergi/go-diff v1.1.0 // indirect | ||
github.com/spf13/afero v1.2.2 // indirect | ||
github.com/spf13/cast v1.3.0 // indirect | ||
github.com/spf13/jwalterweatherman v1.0.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/subosito/gotenv v1.2.0 // indirect | ||
go.etcd.io/etcd/client/pkg/v3 v3.5.1 // 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/net v0.0.0-20210825183410-e898025ed96a // indirect | ||
golang.org/x/oauth2 v0.0.0-20210514164344-f6687ab2804c // indirect | ||
golang.org/x/sys v0.0.0-20210831042530-f4d43177bf5e // indirect | ||
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect | ||
golang.org/x/text v0.3.7 // indirect | ||
golang.org/x/time v0.0.0-20210723032227-1f47c861a9ac // indirect | ||
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect | ||
google.golang.org/appengine v1.6.7 // indirect | ||
google.golang.org/genproto v0.0.0-20210831024726-fe130286e0e2 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/ini.v1 v1.51.0 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect | ||
k8s.io/apiextensions-apiserver v0.22.3 // indirect | ||
k8s.io/component-base v0.22.3 // indirect | ||
k8s.io/klog/v2 v2.10.0 // indirect | ||
k8s.io/utils v0.0.0-20210819203725-bdf08cb9a70a // indirect | ||
sigs.k8s.io/structured-merge-diff/v4 v4.1.2 // indirect | ||
) | ||
|
||
replace go.uber.org/atomic => github.com/uber-go/atomic v1.9.0 |
Oops, something went wrong.