forked from eksctl-io/eksctl
-
Notifications
You must be signed in to change notification settings - Fork 0
/
go.mod
124 lines (118 loc) · 6.5 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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
// Make sure to run the following commands after changes to this file are made:
// `make -f Makefile.docker update-build-image-manifest && make -f Makefile.docker push-build-image`
module github.com/weaveworks/eksctl
go 1.13
require (
github.com/MakeNowJust/heredoc v0.0.0-20171113091838-e9091a26100e // indirect
github.com/alecthomas/jsonschema v0.0.0-20190530235721-fd8d96416671
github.com/aws/aws-sdk-go v1.25.14-0.20191128064856-d39dadebcc3f
github.com/awslabs/goformation v0.0.0-20190320125420-ac0a17860cf1
github.com/blang/semver v3.5.1+incompatible
github.com/bxcodec/faker v2.0.1+incompatible
github.com/christopherhein/go-version v0.0.0-20180807222509-fee8dd1f7c24
github.com/cloudflare/cfssl v0.0.0-20190726000631-633726f6bcb7
github.com/coredns/coredns v0.0.0-20170910182647-1b60688dc8f7 // indirect
github.com/coreos/bbolt v1.3.3 // indirect
github.com/coreos/etcd v3.3.13+incompatible // indirect
github.com/coreos/go-semver v0.3.0 // indirect
github.com/coreos/go-systemd v0.0.0-20190620071333-e64a0ec8b42a // indirect
github.com/dave/jennifer v1.3.0
github.com/dlespiau/kube-test-harness v0.0.0-20190110151726-c51c87635b61
github.com/docker/distribution v2.7.1+incompatible // indirect
github.com/docker/docker v1.13.1 // indirect
github.com/evanphx/json-patch v4.2.0+incompatible
github.com/fluxcd/flux v1.15.0
github.com/fluxcd/helm-operator v1.0.0-rc2
github.com/go-ini/ini v1.37.0 // indirect
github.com/gobuffalo/envy v1.7.0 // indirect
github.com/gobwas/glob v0.2.3
github.com/gofrs/flock v0.7.1 // indirect
github.com/gohugoio/hugo v0.55.6
github.com/google/btree v1.0.0 // indirect
github.com/google/certificate-transparency-go v1.0.21 // indirect
github.com/goreleaser/goreleaser v0.110.0
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect
github.com/grpc-ecosystem/grpc-gateway v1.9.2 // indirect
github.com/instrumenta/kubeval v0.0.0-20190804145309-805845b47dfc
github.com/justinbarrick/go-k8s-portforward v1.0.4-0.20190722134107-d79fe1b9d79d
github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51
github.com/kevinburke/go-bindata v3.15.0+incompatible
github.com/kr/fs v0.1.0 // indirect
github.com/kris-nova/logger v0.0.0-20181127235838-fd0d87064b06
github.com/kris-nova/lolgopher v0.0.0-20180124180951-14d43f83481a // indirect
github.com/kubernetes-sigs/aws-iam-authenticator v0.4.0
github.com/kubicorn/kubicorn v0.0.0-20180829191017-06f6bce92acc
github.com/lithammer/dedent v1.1.0
github.com/magiconair/properties v1.8.1 // indirect
github.com/mattn/go-zglob v0.0.1 // indirect
github.com/miekg/coredns v0.0.0-20170910182647-1b60688dc8f7 // indirect
github.com/onsi/ginkgo v1.8.0
github.com/onsi/gomega v1.5.0
github.com/pelletier/go-toml v1.4.0 // indirect
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect
github.com/pkg/errors v0.8.1
github.com/pkg/sftp v1.8.3 // indirect
github.com/riywo/loginshell v0.0.0-20190610082906-2ed199a032f6
github.com/sanathkr/yaml v1.0.0 // indirect
github.com/sirupsen/logrus v1.4.2 // indirect
github.com/spf13/afero v1.2.2
github.com/spf13/cobra v0.0.4
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.3.2
github.com/spotinst/spotinst-sdk-go v0.0.0-20181012192533-fed4677dbf8f // indirect
github.com/stretchr/testify v1.3.0
github.com/tidwall/gjson v1.1.3
github.com/tidwall/match v1.0.0 // indirect
github.com/tidwall/sjson v1.0.2
github.com/vektra/mockery v0.0.0-20181123154057-e78b021dcbb5
github.com/vmware/govmomi v0.19.0 // indirect
github.com/voxelbrain/goptions v0.0.0-20180630082107-58cddc247ea2 // indirect
github.com/weaveworks/github-release v0.6.2
github.com/weaveworks/launcher v0.0.0-20180711153254-f1b2830d4f2d
github.com/whilp/git-urls v0.0.0-20160530060445-31bac0d230fa
github.com/zmap/zlint v0.0.0-20190806182416-88c3f6b6f2f5 // indirect
go.etcd.io/bbolt v1.3.3 // indirect
go.uber.org/atomic v1.4.0 // indirect
go.uber.org/zap v1.10.0 // indirect
golang.org/x/tools v0.0.0-20190621195816-6e04913cbbac
google.golang.org/grpc v1.21.1 // indirect
gopkg.in/gcfg.v1 v1.2.3 // indirect
gopkg.in/ini.v1 v1.42.0 // indirect
k8s.io/api v0.0.0-20190808180749-077ce48e77da
k8s.io/apiextensions-apiserver v0.0.0-20190315093550-53c4693659ed
k8s.io/apimachinery v0.0.0-20190808180622-ac5d3b819fc6
k8s.io/apiserver v0.0.0-20190226174732-cf2f1d68202d // indirect
k8s.io/cli-runtime v0.0.0-20190226180714-082c0831af2b
k8s.io/client-go v11.0.0+incompatible
k8s.io/code-generator v0.0.0-20190831074504-732c9ca86353
k8s.io/csi-api v0.0.0-20190301175547-a37926bd2215 // indirect
k8s.io/helm v2.13.1+incompatible
k8s.io/kops v0.0.0-20190222135932-278e6606534e
k8s.io/kubelet v0.0.0-20190313123811-3556bcde9670
k8s.io/kubernetes v1.12.6
k8s.io/utils v0.0.0-20190801114015-581e00157fb1 // indirect
sigs.k8s.io/yaml v1.1.0
)
replace (
// Override since git.apache.org is down. The docs say to fetch from github.
git.apache.org/thrift.git => github.com/apache/thrift v0.0.0-20180902110319-2566ecd5d999
github.com/Azure/go-autorest => github.com/Azure/go-autorest v10.14.0+incompatible
// Needed due to to Sirupsen/sirupsen case clash
github.com/Sirupsen/logrus => github.com/sirupsen/logrus v1.4.2
github.com/aws/aws-sdk-go => github.com/weaveworks/aws-sdk-go v1.25.14-0.20191218135223-757eeed07291
github.com/awslabs/goformation => github.com/errordeveloper/goformation v0.0.0-20190507151947-a31eae35e596
// Override version since auto-detected one fails with GOPROXY
github.com/census-instrumentation/opencensus-proto => github.com/census-instrumentation/opencensus-proto v0.2.0
// go mod appears to pick wrong version of github.com/docker/distribution automatically, which breaks k8s.io/kubernetes@v1.12.6
github.com/docker/distribution => github.com/docker/distribution v0.0.0-20190619192407-5223c27422cc
// https://github.com/kubernetes/code-generator/blob/732c9ca86353b432e0cd118b64a941cadff73357/go.mod#L23-L28
golang.org/x/crypto => golang.org/x/crypto v0.0.0-20181025213731-e84da0312774
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
// Used to pin the k8s library versions regardless of what other dependencies enforce
k8s.io/api => k8s.io/api v0.0.0-20190226173710-145d52631d00
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.0.0-20190226180157-bd0469a053ff
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20190221084156-01f179d85dbc
k8s.io/client-go => k8s.io/client-go v0.0.0-20190226174127-78295b709ec6
)