2019-09-11 21:05:00 +00:00
|
|
|
module github.com/rancher/steve
|
2019-08-04 17:41:32 +00:00
|
|
|
|
2020-01-31 05:01:21 +00:00
|
|
|
go 1.13
|
2019-08-04 17:41:32 +00:00
|
|
|
|
2020-05-31 02:03:38 +00:00
|
|
|
replace (
|
|
|
|
git.apache.org/thrift.git => github.com/apache/thrift v0.12.0
|
|
|
|
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.2.0+incompatible
|
|
|
|
github.com/crewjam/saml => github.com/rancher/saml v0.0.0-20180713225824-ce1532152fde
|
|
|
|
github.com/knative/pkg => github.com/rancher/pkg v0.0.0-20190514055449-b30ab9de040e
|
|
|
|
github.com/matryer/moq => github.com/rancher/moq v0.0.0-20190404221404-ee5226d43009
|
|
|
|
github.com/prometheus/client_golang => github.com/prometheus/client_golang v0.9.3
|
|
|
|
|
|
|
|
k8s.io/api => k8s.io/api v0.18.0
|
|
|
|
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.18.0
|
|
|
|
k8s.io/apimachinery => k8s.io/apimachinery v0.18.0
|
|
|
|
k8s.io/apiserver => k8s.io/apiserver v0.18.0
|
|
|
|
k8s.io/cli-runtime => k8s.io/cli-runtime v0.18.0
|
|
|
|
k8s.io/client-go => github.com/rancher/client-go v1.18.0-rancher.1
|
|
|
|
k8s.io/cloud-provider => k8s.io/cloud-provider v0.18.0
|
|
|
|
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.18.0
|
|
|
|
k8s.io/code-generator => k8s.io/code-generator v0.18.0
|
|
|
|
k8s.io/component-base => k8s.io/component-base v0.18.0
|
|
|
|
k8s.io/cri-api => k8s.io/cri-api v0.18.0
|
|
|
|
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.18.0
|
|
|
|
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.18.0
|
|
|
|
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.18.0
|
|
|
|
k8s.io/kube-proxy => k8s.io/kube-proxy v0.18.0
|
|
|
|
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.18.0
|
|
|
|
k8s.io/kubectl => k8s.io/kubectl v0.18.0
|
|
|
|
k8s.io/kubelet => k8s.io/kubelet v0.18.0
|
|
|
|
k8s.io/kubernetes => k8s.io/kubernetes v1.18.0
|
|
|
|
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.18.0
|
|
|
|
k8s.io/metrics => k8s.io/metrics v0.18.0
|
|
|
|
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.18.0
|
|
|
|
)
|
2019-08-04 17:41:32 +00:00
|
|
|
|
|
|
|
require (
|
2020-01-31 05:01:21 +00:00
|
|
|
github.com/ghodss/yaml v1.0.0
|
2020-05-31 02:03:38 +00:00
|
|
|
github.com/gorilla/mux v1.7.3
|
|
|
|
github.com/gorilla/websocket v1.4.1
|
2020-05-17 05:25:47 +00:00
|
|
|
github.com/pkg/errors v0.9.1
|
2020-03-11 06:11:22 +00:00
|
|
|
github.com/rancher/dynamiclistener v0.2.1-0.20200213165308-111c5b43e932
|
2020-05-31 02:03:38 +00:00
|
|
|
github.com/rancher/rancher/pkg/auth v0.0.0-20200531020208-29f9426e5027
|
2020-05-17 05:25:47 +00:00
|
|
|
github.com/rancher/wrangler v0.6.2-0.20200515155908-1923f3f8ec3f
|
|
|
|
github.com/rancher/wrangler-api v0.6.1-0.20200515193802-dcf70881b087
|
2019-08-04 17:41:32 +00:00
|
|
|
github.com/sirupsen/logrus v1.4.2
|
2020-02-22 05:19:07 +00:00
|
|
|
github.com/stretchr/testify v1.4.0
|
2020-01-31 05:01:21 +00:00
|
|
|
github.com/urfave/cli v1.22.2
|
2020-01-31 05:37:59 +00:00
|
|
|
github.com/urfave/cli/v2 v2.1.1
|
2020-02-22 05:19:07 +00:00
|
|
|
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e
|
2020-03-26 20:56:53 +00:00
|
|
|
k8s.io/api v0.18.0
|
|
|
|
k8s.io/apiextensions-apiserver v0.18.0
|
|
|
|
k8s.io/apimachinery v0.18.0
|
|
|
|
k8s.io/apiserver v0.18.0
|
2020-05-31 02:03:38 +00:00
|
|
|
k8s.io/client-go v12.0.0+incompatible
|
2020-01-31 05:37:59 +00:00
|
|
|
k8s.io/klog v1.0.0
|
2020-03-26 20:56:53 +00:00
|
|
|
k8s.io/kube-aggregator v0.18.0
|
|
|
|
k8s.io/kube-openapi v0.0.0-20200121204235-bf4fb3bd569c
|
2019-08-04 17:41:32 +00:00
|
|
|
)
|