forked from ChrisHirsch/kuberhealthy-storage-check
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgo.mod
More file actions
22 lines (17 loc) · 730 Bytes
/
go.mod
File metadata and controls
22 lines (17 loc) · 730 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
module github.com/ChrisHirsch/kuberhealthy-storage-check
replace github.com/go-resty/resty => gopkg.in/resty.v1 v1.10.0
replace google.golang.org/cloud => cloud.google.com/go v0.37.0
replace github.com/Sirupsen/logrus => github.com/sirupsen/logrus v1.3.0
require (
github.com/Comcast/kuberhealthy/v2 v2.2.0
github.com/gogo/protobuf v1.3.2 // indirect
github.com/kr/pretty v0.1.0 // indirect
github.com/sirupsen/logrus v1.4.0
github.com/spf13/pflag v1.0.3 // indirect
github.com/stretchr/testify v1.5.1 // indirect
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect
k8s.io/api v0.0.0-20190819141258-3544db3b9e44
k8s.io/apimachinery v0.15.7
k8s.io/client-go v0.0.0-20190819141724-e14f31a72a77
)
go 1.13