prometheus-adapter/Gopkg.toml
Solly Ross c5801455ec Introduce support for the resource metrics API
This introduces support for the resource metrics in the adapter.
The individual queries and window sizes are fully customizable via a new
config section.  This uses just the generic machinery from
metrics-server to serve the API.
2018-10-03 11:05:43 -04:00

91 lines
1.8 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]]
name = "github.com/kubernetes-incubator/custom-metrics-apiserver"
version = "kubernetes-1.11.2"
[[constraint]]
name = "github.com/kubernetes-incubator/metrics-server"
branch = "master"
# Core Kubernetes deps
[[constraint]]
name = "k8s.io/api"
version = "kubernetes-1.11.3"
[[constraint]]
name = "k8s.io/apimachinery"
version = "kubernetes-1.11.3"
[[constraint]]
name = "k8s.io/apiserver"
version = "kubernetes-1.11.3"
[[constraint]]
name = "k8s.io/client-go"
version = "kubernetes-1.11.3"
[[constraint]]
name = "k8s.io/metrics"
version = "kubernetes-1.11.3"
# messed up kubernetes dep
[[override]]
name = "github.com/json-iterator/go"
version = "1.1.5"
# Test deps
[[constraint]]
name = "github.com/stretchr/testify"
version = "1.2.2"
[prune]
go-tests = true
unused-packages = true