-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Mikkel Oscar Lyderik Larsen <m@moscar.net>
- Loading branch information
1 parent
cf1b85e
commit ef1a27c
Showing
6 changed files
with
79 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,4 @@ | ||
build/ | ||
vendor/ | ||
|
||
# ignored for now: https://github.com/golang/go/issues/25525 | ||
go.sum |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
module github.com/mikkeloscar/kube-aws-iam-controller | ||
|
||
require ( | ||
github.com/alecthomas/template v0.0.0-20160405071501-a0175ee3bccc // indirect | ||
github.com/alecthomas/units v0.0.0-20151022065526-2efee857e7cf // indirect | ||
github.com/aws/aws-sdk-go v1.15.21 | ||
github.com/davecgh/go-spew v1.1.0 // indirect | ||
github.com/fsnotify/fsnotify v1.4.7 // indirect | ||
github.com/ghodss/yaml v1.0.0 // indirect | ||
github.com/go-ini/ini v1.33.0 // indirect | ||
github.com/gogo/protobuf v1.0.0 // indirect | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect | ||
github.com/golang/groupcache v0.0.0-20180513044358-24b0969c4cb7 // indirect | ||
github.com/golang/protobuf v1.0.0 // indirect | ||
github.com/google/btree v0.0.0-20180124185431-e89373fe6b4a // indirect | ||
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect | ||
github.com/googleapis/gnostic v0.1.0 // indirect | ||
github.com/gopherjs/gopherjs v0.0.0-20180820052304-89baedc74dd7 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect | ||
github.com/hashicorp/golang-lru v0.0.0-20180201235237-0fb14efe8c47 // indirect | ||
github.com/hpcloud/tail v1.0.0 // indirect | ||
github.com/jmespath/go-jmespath v0.0.0-20160202185014-0b12d6b521d8 // indirect | ||
github.com/json-iterator/go v0.0.0-20180315132816-ca39e5af3ece // indirect | ||
github.com/jtolds/gls v4.2.1+incompatible // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v0.0.0-20180228065516-1df9eeb2bb81 // indirect | ||
github.com/onsi/ginkgo v1.6.0 // indirect | ||
github.com/onsi/gomega v1.4.1 // indirect | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.0.5 | ||
github.com/smartystreets/assertions v0.0.0-20180820201707-7c9eb446e3cf // indirect | ||
github.com/smartystreets/goconvey v0.0.0-20180222194500-ef6db91d284a // indirect | ||
github.com/spf13/pflag v1.0.0 // indirect | ||
github.com/stretchr/testify v1.2.2 // indirect | ||
golang.org/x/crypto v0.0.0-20180330210355-12892e8c234f // indirect | ||
golang.org/x/net v0.0.0-20180330215511-b68f30494add // indirect | ||
golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f // indirect | ||
golang.org/x/sys v0.0.0-20180329131831-378d26f46672 // indirect | ||
golang.org/x/text v0.3.0 // indirect | ||
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2 // indirect | ||
gopkg.in/airbrake/gobrake.v2 v2.0.9 // indirect | ||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 | ||
gopkg.in/fsnotify.v1 v1.4.7 // indirect | ||
gopkg.in/gemnasium/logrus-airbrake-hook.v2 v2.1.2 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/ini.v1 v1.38.2 // indirect | ||
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect | ||
gopkg.in/yaml.v2 v2.2.1 // indirect | ||
k8s.io/api v0.0.0-20180824172530-dd5c735cbff9 | ||
k8s.io/apimachinery v0.0.0-20180328184639-0ed326127d30 | ||
k8s.io/client-go v8.0.0+incompatible | ||
) | ||
|
||
replace github.com/aws/aws-sdk-go => github.com/mikkeloscar/aws-sdk-go v1.4.21-0.20180323205119-1290f149475c |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters