-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Add ability to reload cert and key from disk. Enables frequent rotation of certificates * Update docker Go build version - update go mod dependencies * Vendor and Lint with all the code present Otherwise `go mod download / vendor` doesn't download dependencies * Install golint outside of the module So it doesn't contaminate our go.mod / vendor dir * Use later version of Go for Travis build * Install golint outside of the module * Revert changes to Dockerfile * Reinstate golint as a project dependency
- Loading branch information
1 parent
85bf83c
commit 8c6fcc1
Showing
10 changed files
with
301 additions
and
148 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,9 +1,9 @@ | ||
language: go | ||
|
||
go: | ||
- "1.11.x" | ||
- "1.12.x" | ||
- "1.13.x" | ||
- "1.14.x" | ||
- "1.15.x" | ||
|
||
env: | ||
- GO111MODULE=on | ||
|
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,4 +1,4 @@ | ||
ARG GO_VERSION=1.11.5 | ||
ARG GO_VERSION=1.15.0 | ||
FROM golang:${GO_VERSION}-alpine | ||
|
||
RUN apk --no-cache add \ | ||
|
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,46 +1,22 @@ | ||
module github.com/tumblr/k8s-sidecar-injector | ||
|
||
go 1.14 | ||
go 1.15 | ||
|
||
require ( | ||
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/dyson/certman v0.2.1 | ||
github.com/fsnotify/fsnotify v1.4.9 // indirect | ||
github.com/ghodss/yaml v1.0.0 | ||
github.com/gogo/protobuf v1.1.1 // indirect | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b | ||
github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c // indirect | ||
github.com/google/gofuzz v0.0.0-20170612174753-24818f796faf // indirect | ||
github.com/googleapis/gnostic v0.2.0 // indirect | ||
github.com/gorilla/context v1.1.1 // indirect | ||
github.com/gorilla/handlers v1.4.0 | ||
github.com/gorilla/mux v1.6.2 | ||
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect | ||
github.com/imdario/mergo v0.3.6 // indirect | ||
github.com/json-iterator/go v1.1.5 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect | ||
github.com/modern-go/reflect2 v0.0.0-20180701023420-4b7aa43c6742 // indirect | ||
github.com/nsf/jsondiff v0.0.0-20190712045011-8443391ee9b6 | ||
github.com/petar/GoLLRB v0.0.0-20130427215148-53be0d36a84c // indirect | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/prometheus/client_golang v0.9.1 | ||
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 // indirect | ||
github.com/prometheus/common v0.0.0-20181020173914-7e9e6cabbd39 // indirect | ||
github.com/prometheus/procfs v0.0.0-20181005140218-185b4288413d // indirect | ||
github.com/spf13/pflag v1.0.3 // indirect | ||
github.com/stretchr/testify v1.4.0 // indirect | ||
golang.org/x/lint v0.0.0-20200130185559-910be7a94367 // indirect | ||
golang.org/x/oauth2 v0.0.0-20181106182150-f42d05182288 // indirect | ||
golang.org/x/time v0.0.0-20181108054448-85acf8d2951c // indirect | ||
google.golang.org/appengine v1.3.0 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/yaml.v2 v2.2.2 | ||
k8s.io/api v0.0.0-20181108192910-6560175f5b2d | ||
k8s.io/apimachinery v0.0.0-20181108192626-90473842928c | ||
k8s.io/client-go v9.0.0+incompatible | ||
k8s.io/kube-openapi v0.0.0-20181106182614-a9a16210091c // indirect | ||
sigs.k8s.io/yaml v1.1.0 // indirect | ||
github.com/gorilla/handlers v1.4.2 | ||
github.com/gorilla/mux v1.7.4 | ||
github.com/imdario/mergo v0.3.11 // indirect | ||
github.com/nsf/jsondiff v0.0.0-20200515183724-f29ed568f4ce | ||
github.com/prometheus/client_golang v1.7.1 | ||
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect | ||
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect | ||
golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect | ||
gopkg.in/yaml.v2 v2.3.0 | ||
k8s.io/api v0.18.6 | ||
k8s.io/apimachinery v0.18.6 | ||
k8s.io/client-go v0.18.6 | ||
k8s.io/utils v0.0.0-20200731180307-f00132d28269 // 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 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