forked from kubernetes/sample-controller
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgo.mod
27 lines (23 loc) · 1.15 KB
/
go.mod
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
// This is a generated file. Do not edit directly.
module k8s.io/sample-controller
go 1.12
require (
k8s.io/api v0.0.0-20190925180651-d58b53da08f5
k8s.io/apimachinery v0.0.0-20190925235427-62598f38f24e
k8s.io/client-go v0.0.0-20190925235746-07054768d98d
k8s.io/code-generator v0.0.0-20190925195306-32dfb485ddce
k8s.io/klog v1.0.0
)
replace (
golang.org/x/crypto => golang.org/x/crypto v0.0.0-20181025213731-e84da0312774
golang.org/x/lint => golang.org/x/lint v0.0.0-20181217174547-8f45f776aaf1
golang.org/x/oauth2 => golang.org/x/oauth2 v0.0.0-20190402181905-9f3314589c9a
golang.org/x/sync => golang.org/x/sync v0.0.0-20181108010431-42b317875d0f
golang.org/x/sys => golang.org/x/sys v0.0.0-20190209173611-3b5209105503
golang.org/x/text => golang.org/x/text v0.3.1-0.20181227161524-e6919f6577db
golang.org/x/time => golang.org/x/time v0.0.0-20161028155119-f51c12702a4d
k8s.io/api => k8s.io/api v0.0.0-20190925180651-d58b53da08f5
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190925235427-62598f38f24e
k8s.io/client-go => k8s.io/client-go v0.0.0-20190925235746-07054768d98d
k8s.io/code-generator => k8s.io/code-generator v0.0.0-20190925195306-32dfb485ddce
)