2018-10-14 11:37:58 +02:00
|
|
|
module github.com/zalando-incubator/kube-metrics-adapter
|
2018-10-08 13:17:05 +02:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/NYTimes/gziphandler v1.0.1 // indirect
|
2021-03-01 11:38:19 +01:00
|
|
|
github.com/aws/aws-sdk-go v1.37.20
|
|
|
|
github.com/go-openapi/spec v0.20.3
|
2020-12-01 11:16:09 +01:00
|
|
|
github.com/influxdata/influxdb-client-go v0.2.0
|
|
|
|
github.com/influxdata/line-protocol v0.0.0-20201012155213-5f565037cbc9 // indirect
|
2021-02-01 10:26:01 +01:00
|
|
|
github.com/kubernetes-sigs/custom-metrics-apiserver v0.0.0-20201216091021-1b9fa998bbaa
|
2021-03-01 11:38:19 +01:00
|
|
|
github.com/magefile/mage v1.11.0 // indirect
|
|
|
|
github.com/mailru/easyjson v0.7.7 // indirect
|
2020-04-01 20:32:09 +02:00
|
|
|
github.com/mattn/go-colorable v0.1.4 // indirect
|
2020-12-01 11:16:09 +01:00
|
|
|
github.com/mattn/go-isatty v0.0.10 // indirect
|
2020-04-01 20:32:09 +02:00
|
|
|
github.com/onsi/gomega v1.8.1 // indirect
|
2021-01-04 09:59:04 +01:00
|
|
|
github.com/prometheus/client_golang v1.9.0
|
2021-03-01 11:38:19 +01:00
|
|
|
github.com/prometheus/common v0.18.0
|
|
|
|
github.com/sirupsen/logrus v1.8.0
|
2020-03-30 09:49:38 +00:00
|
|
|
github.com/spf13/cobra v0.0.7
|
2020-08-13 09:51:05 +02:00
|
|
|
github.com/spyzhov/ajson v0.4.2
|
2021-02-01 10:26:01 +01:00
|
|
|
github.com/stretchr/testify v1.7.0
|
2018-10-29 14:26:25 +01:00
|
|
|
github.com/zalando-incubator/cluster-lifecycle-manager v0.0.0-20180921141935-824b77fb1f84
|
2020-12-01 11:16:09 +01:00
|
|
|
golang.org/x/crypto v0.0.0-20201124201722-c8d3bf9c5392 // indirect
|
2021-03-01 11:38:19 +01:00
|
|
|
golang.org/x/net v0.0.0-20210226172049-e18ecbb05110 // indirect
|
2021-02-01 10:26:01 +01:00
|
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
2021-03-01 11:38:19 +01:00
|
|
|
golang.org/x/sys v0.0.0-20210301091718-77cc2087c03b // indirect
|
2021-02-01 10:26:01 +01:00
|
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
2021-03-01 11:38:19 +01:00
|
|
|
k8s.io/api v0.20.4
|
|
|
|
k8s.io/apimachinery v0.20.4
|
|
|
|
k8s.io/apiserver v0.20.4
|
|
|
|
k8s.io/client-go v0.20.4
|
|
|
|
k8s.io/component-base v0.20.4
|
2020-03-22 15:12:02 +01:00
|
|
|
k8s.io/klog v1.0.0
|
2021-02-01 10:26:01 +01:00
|
|
|
k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd
|
2021-03-01 11:38:19 +01:00
|
|
|
k8s.io/metrics v0.20.4
|
2018-10-08 13:17:05 +02:00
|
|
|
)
|
2019-10-01 11:54:37 +02:00
|
|
|
|
2021-03-01 11:38:19 +01:00
|
|
|
go 1.16
|