56 lines
1.1 KiB
TOML
56 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]
|
|
# non-go = false
|
|
# go-tests = true
|
|
# unused-packages = true
|
|
|
|
|
|
[[constraint]]
|
|
name = "k8s.io/kubernetes"
|
|
version = "v1.11.2"
|
|
|
|
[[constraint]]
|
|
name = "k8s.io/apimachinery"
|
|
branch = "release-1.11"
|
|
|
|
[[constraint]]
|
|
name = "k8s.io/client-go"
|
|
version = "~v8.0.0"
|
|
|
|
[[override]]
|
|
name = "k8s.io/api"
|
|
version = "kubernetes-1.11.2"
|
|
|
|
[[override]]
|
|
name = "github.com/gregjones/httpcache"
|
|
revision = "787624de3eb7bd915c329cba748687a3b22666a6"
|
|
|
|
[[override]]
|
|
name = "golang.org/x/time"
|
|
revision = "f51c12702a4d776e4c1fa9b0fabab841babae631"
|
|
|
|
[prune]
|
|
go-tests = true
|
|
unused-packages = true
|
|
|