prometheus-adapter/Gopkg.toml
Solly Ross be018f76e3 Update dependencies to Kubernetes 1.11
This updates our dependencies to the Kubernetes 1.11 versions.
In the future, this will also allow us to support the external
metrics API.
2018-06-27 16:57:50 -04:00

82 lines
1.7 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
# Utility library deps
[[constraint]]
branch = "master"
name = "github.com/golang/glog"
[[constraint]]
name = "github.com/prometheus/client_golang"
version = "0.8.0"
[[constraint]]
branch = "master"
name = "github.com/prometheus/common"
[[constraint]]
name = "github.com/spf13/cobra"
version = "0.0.3"
[[constraint]]
name = "gopkg.in/yaml.v2"
version = "2.2.1"
# Kubernetes incubator deps
[[constraint]]
version = "kubernetes-1.11.0-rc.1"
name = "github.com/kubernetes-incubator/custom-metrics-apiserver"
# Core Kubernetes deps
[[constraint]]
name = "k8s.io/api"
version = "kubernetes-1.11.0-rc.1"
[[constraint]]
name = "k8s.io/apimachinery"
version = "kubernetes-1.11.0-rc.1"
[[constraint]]
name = "k8s.io/apiserver"
version = "kubernetes-1.11.0-rc.1"
[[constraint]]
name = "k8s.io/client-go"
version = "kubernetes-1.11.0-rc.1"
[[constraint]]
name = "k8s.io/metrics"
version = "kubernetes-1.11.0-rc.1"
# Test deps
[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.2"
[prune]
go-tests = true
unused-packages = true