-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add omitempty for groups & build/SDK updates (#9)
* allow groups to omitempty * remove vendor * fix build to show version * Add entrypoint and change default command * Update Dockerfile * Update Dockerfile * update client-go to 1.16.9 * update go version * Update .travis.yml
- Loading branch information
1 parent
fefe83e
commit dcb7aa6
Showing
1,844 changed files
with
150 additions
and
888,389 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,7 +1,7 @@ | ||
language: go | ||
|
||
go: | ||
- 1.12.x | ||
- 1.13.x | ||
|
||
git: | ||
depth: 1 | ||
|
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,17 +1,21 @@ | ||
FROM golang:1.12-alpine AS builder | ||
FROM golang:1.13-alpine | ||
|
||
RUN apk add --update \ | ||
python \ | ||
python-dev \ | ||
py-pip \ | ||
build-base \ | ||
git \ | ||
&& pip install awscli | ||
|
||
WORKDIR /go/src/github.com/keikoproj/aws-auth | ||
COPY . . | ||
RUN git rev-parse HEAD | ||
RUN date +%FT%T%z | ||
RUN make build | ||
RUN cp ./bin/aws-auth /bin/aws-auth \ | ||
&& chmod +x /bin/aws-auth | ||
ENV HOME /root | ||
|
||
CMD ["/bin/aws-auth"] | ||
ENTRYPOINT ["/bin/aws-auth"] | ||
CMD ["help"] |
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 |
---|---|---|
@@ -1,31 +1,17 @@ | ||
module github.com/keikoproj/aws-auth | ||
|
||
go 1.12 | ||
go 1.13 | ||
|
||
require ( | ||
github.com/evanphx/json-patch v4.5.0+incompatible // indirect | ||
github.com/gogo/protobuf v1.2.2-0.20190723190241-65acae22fc9d // indirect | ||
github.com/googleapis/gnostic v0.3.1 // indirect | ||
github.com/imdario/mergo v0.3.7 // indirect | ||
github.com/json-iterator/go v1.1.7 // indirect | ||
github.com/kr/pretty v0.1.0 // indirect | ||
github.com/modern-go/reflect2 v1.0.1 // indirect | ||
github.com/onsi/gomega v1.6.0 | ||
github.com/pkg/errors v0.8.1 // indirect | ||
github.com/spf13/cobra v0.0.5 | ||
golang.org/x/net v0.0.0-20190813141303-74dc4d7220e7 // indirect | ||
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect | ||
golang.org/x/sys v0.0.0-20190616124812-15dcb6c0061f // indirect | ||
golang.org/x/text v0.3.2 // indirect | ||
golang.org/x/time v0.0.0-20190308202827-9d24e82272b4 // indirect | ||
google.golang.org/appengine v1.5.0 // indirect | ||
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127 // indirect | ||
gopkg.in/inf.v0 v0.9.0 // indirect | ||
gopkg.in/yaml.v2 v2.2.2 | ||
k8s.io/api v0.0.0-20190313235455-40a48860b5ab | ||
k8s.io/apimachinery v0.0.0-20190313205120-d7deff9243b1 | ||
k8s.io/client-go v11.0.0+incompatible | ||
k8s.io/klog v0.4.0 // indirect | ||
k8s.io/kube-openapi v0.0.0-20190816220812-743ec37842bf // indirect | ||
gopkg.in/yaml.v2 v2.2.8 | ||
k8s.io/api v0.16.9 | ||
k8s.io/apimachinery v0.16.9 | ||
k8s.io/client-go v0.16.9 | ||
k8s.io/utils v0.0.0-20190809000727-6c36bc71fc4a // indirect | ||
) |
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.