Skip to content

Commit 6fd01e8

Browse files
committed
git mod init
1 parent 520b650 commit 6fd01e8

File tree

1 file changed

+64
-0
lines changed

1 file changed

+64
-0
lines changed

go.mod

Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
1+
module k8s.io/node-problem-detector
2+
3+
go 1.11
4+
5+
require (
6+
code.cloudfoundry.org/clock v0.0.0-20161212184238-07af930eb5e5
7+
contrib.go.opencensus.io/exporter/prometheus v0.0.0-20190427222117-f6cda26f80a3
8+
github.com/PuerkitoBio/purell v1.0.0
9+
github.com/PuerkitoBio/urlesc v0.0.0-20160726150825-5bd2802263f2
10+
github.com/StackExchange/wmi v0.0.0-20181212234831-e0a55b97c705
11+
github.com/beorn7/perks v1.0.0
12+
github.com/coreos/go-systemd v0.0.0-20161114122254-48702e0da86b
13+
github.com/coreos/pkg v0.0.0-20160620232715-fa29b1d70f0b
14+
github.com/davecgh/go-spew v0.0.0-20151105211317-5215b55f46b2
15+
github.com/emicklei/go-restful v0.0.0-20170410110728-ff4f55a20633
16+
github.com/euank/go-kmsg-parser v2.0.0+incompatible
17+
github.com/fsnotify/fsnotify v0.0.0-20160816051541-f12c6236fe7b
18+
github.com/ghodss/yaml v0.0.0-20150909031657-73d445a93680
19+
github.com/go-ole/go-ole v1.2.4
20+
github.com/go-openapi/jsonpointer v0.0.0-20160704185906-46af16f9f7b1
21+
github.com/go-openapi/jsonreference v0.0.0-20160704190145-13c6e3589ad9
22+
github.com/go-openapi/spec v0.0.0-20160808142527-6aced65f8501
23+
github.com/go-openapi/swag v0.0.0-20160704191624-1d0bd113de87
24+
github.com/gogo/protobuf v0.0.0-20170330071051-c0656edd0d9e
25+
github.com/golang/glog v0.0.0-20141105023935-44145f04b68c
26+
github.com/golang/groupcache v0.0.0-20150125180832-604ed5785183
27+
github.com/golang/protobuf v0.0.0-20190409050943-e91709a02e0e
28+
github.com/google/btree v0.0.0-20160524151835-7d79101e329e
29+
github.com/google/cadvisor v0.0.0-20171116003604-5231853e7124
30+
github.com/google/gofuzz v0.0.0-20161122191042-44d81051d367
31+
github.com/googleapis/gnostic v0.1.0
32+
github.com/gregjones/httpcache v0.0.0-20170926212834-c1f8028e62ad
33+
github.com/hashicorp/golang-lru v0.5.1
34+
github.com/howeyc/gopass v0.0.0-20160826175423-3ca23474a7c7
35+
github.com/imdario/mergo v0.0.0-20141206190957-6633656539c1
36+
github.com/json-iterator/go v0.0.0-20171130024224-051434fab7e0
37+
github.com/juju/ratelimit v0.0.0-20170523012141-5b9ff8664717
38+
github.com/mailru/easyjson v0.0.0-20160728113105-d5b7844b561a
39+
github.com/matttproud/golang_protobuf_extensions v0.0.0-20181231171920-c182affec369
40+
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd
41+
github.com/modern-go/reflect2 v0.0.0-20180320133207-05fbef0ca5da
42+
github.com/peterbourgon/diskv v2.0.1+incompatible
43+
github.com/pmezard/go-difflib v0.0.0-20151028094244-d8ed2627bdf0
44+
github.com/prometheus/client_golang v0.0.0-20190430071348-a4daf0098cbd
45+
github.com/prometheus/client_model v0.0.0-20190129233127-fd36f4220a90
46+
github.com/prometheus/common v0.0.0-20190416093430-c873fb1f9420
47+
github.com/prometheus/procfs v0.0.0-20190425082905-87a4384529e0
48+
github.com/shirou/gopsutil v0.0.0-20190427031343-fa9845945e5b
49+
github.com/spf13/pflag v0.0.0-20161024131444-5ccb023bc27d
50+
github.com/stretchr/testify v0.0.0-20151208002404-e3a8ff8ce365
51+
go.opencensus.io v0.0.0-20190426231706-3f87460392ec
52+
golang.org/x/crypto v0.0.0-20170825220121-81e90905daef
53+
golang.org/x/net v0.0.0-20170809000501-1c05540f6879
54+
golang.org/x/sys v0.0.0-20190509141414-a5b02f93d862
55+
golang.org/x/text v0.0.0-20170810154203-b19bf474d317
56+
gopkg.in/inf.v0 v0.9.0
57+
gopkg.in/yaml.v2 v2.0.0-20150924142314-53feefa2559f
58+
k8s.io/api v0.0.0-20180127130940-acf347b865f2
59+
k8s.io/apimachinery v0.0.0-20180126010752-19e3f5aa3adc
60+
k8s.io/client-go v0.0.0-20180103015815-9389c055a838
61+
k8s.io/heapster v0.0.0-20180704153620-b25f8a16208f
62+
k8s.io/kube-openapi v0.0.0-20180216212618-50ae88d24ede
63+
k8s.io/kubernetes v1.11.0
64+
)

0 commit comments

Comments
 (0)