* Move all but mock provider out of tree These have all been moved to repos under github.com/virtual-kubelet. * Introduce a providers.Store This essentially moves the the old register/ handling into a first class object that can be controlled from the CLI rather than through build tags deep in the code. This actually would have made it a bit easier to build the provider repos and makes the cmd/ code more re-usable.
55 lines
1.1 KiB
TOML
55 lines
1.1 KiB
TOML
|
|
# Gopkg.toml example
|
|
#
|
|
# Refer to https://github.com/golang/dep/blob/master/docs/Gopkg.toml.md
|
|
# for detailed Gopkg.toml documentation.
|
|
#
|
|
# required = ["github.com/user/thing/cmd/thing"]
|
|
# ignored = ["github.com/user/project/pkgX", "bitbucket.org/user/project/pkgA/pkgY"]
|
|
#
|
|
# [[constraint]]
|
|
# name = "github.com/user/project"
|
|
# version = "1.0.0"
|
|
#
|
|
# [[constraint]]
|
|
# name = "github.com/user/project2"
|
|
# branch = "dev"
|
|
# source = "github.com/myfork/project2"
|
|
#
|
|
# [[override]]
|
|
# name = "github.com/x/y"
|
|
# version = "2.4.0"
|
|
|
|
[prune]
|
|
unused-packages = true
|
|
non-go = true
|
|
go-tests = true
|
|
|
|
[[constraint]]
|
|
branch = "master"
|
|
name = "github.com/mitchellh/go-homedir"
|
|
|
|
[[constraint]]
|
|
name = "github.com/spf13/cobra"
|
|
version = "0.0.1"
|
|
|
|
[[constraint]]
|
|
name = "github.com/gorilla/mux"
|
|
version = "1.6.0"
|
|
|
|
[[constraint]]
|
|
name = "k8s.io/api"
|
|
version = "kubernetes-1.13.1"
|
|
|
|
[[constraint]]
|
|
name = "k8s.io/apimachinery"
|
|
version = "kubernetes-1.13.1"
|
|
|
|
[[constraint]]
|
|
name = "k8s.io/client-go"
|
|
version = "kubernetes-1.13.1"
|
|
|
|
[[constraint]]
|
|
name = "gotest.tools"
|
|
version = "2.3.0"
|