forked from weaveworks/wksctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
73 lines (70 loc) · 3.52 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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
module github.com/weaveworks/wksctl
go 1.12
require (
github.com/appscode/jsonpatch v0.0.0-00010101000000-000000000000 // indirect
github.com/bitnami-labs/sealed-secrets v0.7.0
github.com/blang/semver v3.5.1+incompatible
github.com/cavaliercoder/go-rpm v0.0.0-20190131055624-7a9c54e3d83e
github.com/chanwit/plandiff v1.0.0
github.com/dlespiau/kube-test-harness v0.0.0-20180712150055-7eab798dff48
github.com/fatih/structs v1.1.0
github.com/ghodss/yaml v1.0.0
github.com/go-logr/zapr v0.1.1 // indirect
github.com/gogo/protobuf v1.3.0 // indirect
github.com/golang/groupcache v0.0.0-20190702054246-869f871628b6 // indirect
github.com/google/btree v1.0.0 // indirect
github.com/google/go-jsonnet v0.11.2
github.com/googleapis/gnostic v0.3.1 // indirect
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
github.com/hashicorp/golang-lru v0.5.3 // indirect
github.com/imdario/mergo v0.3.7 // indirect
github.com/oleiade/reflections v1.0.0 // indirect
github.com/pelletier/go-toml v1.2.0
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
github.com/pkg/errors v0.8.1
github.com/prometheus/client_golang v0.9.3 // indirect
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect
github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd
github.com/sirupsen/logrus v1.4.2
github.com/spf13/cobra v0.0.5
github.com/spf13/pflag v1.0.3
github.com/stretchr/testify v1.4.0
github.com/thanhpk/randstr v0.0.0-20190104161604-ac5b2d62bffb
github.com/weaveworks/footloose v0.0.0-20190903132036-efbcbb7a6390
github.com/weaveworks/go-checkpoint v0.0.0-20170503165305-ebbb8b0518ab
github.com/weaveworks/launcher v0.0.0-20180824102238-59a4fcc32c9c
github.com/whilp/git-urls v0.0.0-20160530060445-31bac0d230fa
go.uber.org/atomic v1.4.0 // indirect
go.uber.org/multierr v1.1.0 // indirect
go.uber.org/zap v1.10.0 // indirect
golang.org/x/crypto v0.0.0-20190617133340-57b3e21c3d56
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect
gomodules.xyz/jsonpatch/v2 v2.0.1 // indirect
google.golang.org/appengine v1.4.0 // indirect
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/oleiade/reflections.v1 v1.0.0
gopkg.in/src-d/go-git.v4 v4.10.0
k8s.io/api v0.0.0-20190831074750-7364b6bdad65
k8s.io/apiextensions-apiserver v0.0.0-20190831115834-b8e250c992fa // indirect
k8s.io/apimachinery v0.0.0-20190831074630-461753078381
k8s.io/client-go v11.0.1-0.20190409021438-1a26190bd76a+incompatible
k8s.io/cluster-bootstrap v0.0.0-20190205054431-5627c5c14d7e
k8s.io/kube-proxy v0.0.0-20190208174132-30e63035f31f
k8s.io/kubernetes v0.0.0-20190201210629-c6d339953bd4
k8s.io/utils v0.0.0-20190801114015-581e00157fb1
sigs.k8s.io/cluster-api v0.0.0-20181211193542-3547f8dd9307
sigs.k8s.io/controller-runtime v0.1.12
sigs.k8s.io/testing_frameworks v0.1.1 // indirect
sigs.k8s.io/yaml v1.1.0
)
replace (
github.com/appscode/jsonpatch => gomodules.xyz/jsonpatch/v2 v2.0.0+incompatible
github.com/dlespiau/kube-test-harness => github.com/dlespiau/kube-test-harness v0.0.0-20180712150055-7eab798dff48
github.com/json-iterator/go => github.com/json-iterator/go v0.0.0-20180612202835-f2b4162afba3
k8s.io/api => k8s.io/api v0.0.0-20190704094930-781da4e7b28a
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190704094625-facf06a8f4b8
k8s.io/client-go => k8s.io/client-go v0.0.0-20190202011228-6e4752048fde
k8s.io/kubernetes => k8s.io/kubernetes v1.13.9-beta.0.0.20190726214758-e065364bfbf4
sigs.k8s.io/kind => sigs.k8s.io/kind v0.0.0-20190204012257-d1773a79317d
)