-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Upgraded tools; Split of CI jobs into pieces; Moved some to GH action…
…s; different way of managing tools. (#2670) * Upgraded tools; Split of CI jobs into pieces; Moved some to GH actions; different way of managing tools. Signed-off-by: Bartlomiej Plotka <[email protected]> * Trying separate action for docs once again. Signed-off-by: Bartlomiej Plotka <[email protected]> * Reverted jb version. Signed-off-by: Bartlomiej Plotka <[email protected]>
- Loading branch information
Showing
38 changed files
with
643 additions
and
357 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
|
||
# Ignore everything | ||
* | ||
|
||
# But not these files: | ||
!.gitignore | ||
!*.mod | ||
!*.md | ||
!*.mk | ||
|
||
*tmp.mod |
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,12 @@ | ||
# Project Development Dependencies. | ||
|
||
This is directory which stores Go modules with pinned buildable package that is used within this repository, managed by https://github.com/bwplotka/bingo. | ||
|
||
* Run `bingo get` to install all tools having each own module file in this directory. | ||
* Run `bingo get <tool>` to install <tool> that have own module file in this directory. | ||
* If `Variables.mk` is present, use $(<upper case tool name>) variable where <tool> is the <root>/.bingo/<tool>.mod. | ||
* See https://github.com/bwplotka/bingo or -h on how to add, remove or change binaries dependencies. | ||
|
||
## Requirements | ||
|
||
* Go 1.14+ |
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,139 @@ | ||
# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.1.0.rc.4. DO NOT EDIT. | ||
# All tools are designed to be build inside $GOBIN. | ||
GOBIN ?= $(firstword $(subst :, ,${GOPATH}))/bin | ||
GO ?= $(shell which go) | ||
|
||
# Bellow generated variables ensure that every time a tool under each variable is invoked, the correct version | ||
# will be used; reinstalling only if needed. | ||
# For example for alertmanager variable: | ||
# | ||
# In your main Makefile (for non array binaries): | ||
# | ||
#include .bingo/Variables.mk # (If not generated automatically by bingo). | ||
# | ||
#command: $(ALERTMANAGER) | ||
# @echo "Running alertmanager" | ||
# @$(ALERTMANAGER) <flags/args..> | ||
# | ||
ALERTMANAGER ?= $(GOBIN)/alertmanager-v0.20.0 | ||
$(ALERTMANAGER): .bingo/alertmanager.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/alertmanager-v0.20.0" | ||
@$(GO) build -modfile=.bingo/alertmanager.mod -o=$(GOBIN)/alertmanager-v0.20.0 "github.com/prometheus/alertmanager/cmd/alertmanager" | ||
.bingo/alertmanager.mod: ; | ||
|
||
EMBEDMD ?= $(GOBIN)/embedmd-v0.0.0-20181127031020-97c13d6e4160 | ||
$(EMBEDMD): .bingo/embedmd.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/embedmd-v0.0.0-20181127031020-97c13d6e4160" | ||
@$(GO) build -modfile=.bingo/embedmd.mod -o=$(GOBIN)/embedmd-v0.0.0-20181127031020-97c13d6e4160 "github.com/campoy/embedmd" | ||
.bingo/embedmd.mod: ; | ||
|
||
FAILLINT ?= $(GOBIN)/faillint-v1.5.0 | ||
$(FAILLINT): .bingo/faillint.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/faillint-v1.5.0" | ||
@$(GO) build -modfile=.bingo/faillint.mod -o=$(GOBIN)/faillint-v1.5.0 "github.com/fatih/faillint" | ||
.bingo/faillint.mod: ; | ||
|
||
GO_BINDATA ?= $(GOBIN)/go-bindata-v3.1.1+incompatible | ||
$(GO_BINDATA): .bingo/go-bindata.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/go-bindata-v3.1.1+incompatible" | ||
@$(GO) build -modfile=.bingo/go-bindata.mod -o=$(GOBIN)/go-bindata-v3.1.1+incompatible "github.com/go-bindata/go-bindata/go-bindata" | ||
.bingo/go-bindata.mod: ; | ||
|
||
GOIMPORTS ?= $(GOBIN)/goimports-v0.0.0-20200526224456-8b020aee10d2 | ||
$(GOIMPORTS): .bingo/goimports.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/goimports-v0.0.0-20200526224456-8b020aee10d2" | ||
@$(GO) build -modfile=.bingo/goimports.mod -o=$(GOBIN)/goimports-v0.0.0-20200526224456-8b020aee10d2 "golang.org/x/tools/cmd/goimports" | ||
.bingo/goimports.mod: ; | ||
|
||
GOJSONTOYAML ?= $(GOBIN)/gojsontoyaml-v0.0.0-20191212081931-bf2969bbd742 | ||
$(GOJSONTOYAML): .bingo/gojsontoyaml.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/gojsontoyaml-v0.0.0-20191212081931-bf2969bbd742" | ||
@$(GO) build -modfile=.bingo/gojsontoyaml.mod -o=$(GOBIN)/gojsontoyaml-v0.0.0-20191212081931-bf2969bbd742 "github.com/brancz/gojsontoyaml" | ||
.bingo/gojsontoyaml.mod: ; | ||
|
||
GOLANGCI_LINT ?= $(GOBIN)/golangci-lint-v1.27.0 | ||
$(GOLANGCI_LINT): .bingo/golangci-lint.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/golangci-lint-v1.27.0" | ||
@$(GO) build -modfile=.bingo/golangci-lint.mod -o=$(GOBIN)/golangci-lint-v1.27.0 "github.com/golangci/golangci-lint/cmd/golangci-lint" | ||
.bingo/golangci-lint.mod: ; | ||
|
||
HUGO ?= $(GOBIN)/hugo-v0.55.3 | ||
$(HUGO): .bingo/hugo.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/hugo-v0.55.3" | ||
@$(GO) build -modfile=.bingo/hugo.mod -o=$(GOBIN)/hugo-v0.55.3 "github.com/gohugoio/hugo" | ||
.bingo/hugo.mod: ; | ||
|
||
JB ?= $(GOBIN)/jb-v0.2.1-0.20200211220001-efe0c9e86443 | ||
$(JB): .bingo/jb.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/jb-v0.2.1-0.20200211220001-efe0c9e86443" | ||
@$(GO) build -modfile=.bingo/jb.mod -o=$(GOBIN)/jb-v0.2.1-0.20200211220001-efe0c9e86443 "github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb" | ||
.bingo/jb.mod: ; | ||
|
||
JSONNET ?= $(GOBIN)/jsonnet-v0.16.0 | ||
$(JSONNET): .bingo/jsonnet.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/jsonnet-v0.16.0" | ||
@$(GO) build -modfile=.bingo/jsonnet.mod -o=$(GOBIN)/jsonnet-v0.16.0 "github.com/google/go-jsonnet/cmd/jsonnet" | ||
.bingo/jsonnet.mod: ; | ||
|
||
JSONNETFMT ?= $(GOBIN)/jsonnetfmt-v0.16.0 | ||
$(JSONNETFMT): .bingo/jsonnetfmt.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/jsonnetfmt-v0.16.0" | ||
@$(GO) build -modfile=.bingo/jsonnetfmt.mod -o=$(GOBIN)/jsonnetfmt-v0.16.0 "github.com/google/go-jsonnet/cmd/jsonnetfmt" | ||
.bingo/jsonnetfmt.mod: ; | ||
|
||
LICHE ?= $(GOBIN)/liche-v0.0.0-20181124191719-2a2e6e56f6c6 | ||
$(LICHE): .bingo/liche.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/liche-v0.0.0-20181124191719-2a2e6e56f6c6" | ||
@$(GO) build -modfile=.bingo/liche.mod -o=$(GOBIN)/liche-v0.0.0-20181124191719-2a2e6e56f6c6 "github.com/raviqqe/liche" | ||
.bingo/liche.mod: ; | ||
|
||
MINIO ?= $(GOBIN)/minio-v0.0.0-20200527010300-cccf2de129da | ||
$(MINIO): .bingo/minio.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/minio-v0.0.0-20200527010300-cccf2de129da" | ||
@$(GO) build -modfile=.bingo/minio.mod -o=$(GOBIN)/minio-v0.0.0-20200527010300-cccf2de129da "github.com/minio/minio" | ||
.bingo/minio.mod: ; | ||
|
||
MISSPELL ?= $(GOBIN)/misspell-v0.3.4 | ||
$(MISSPELL): .bingo/misspell.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/misspell-v0.3.4" | ||
@$(GO) build -modfile=.bingo/misspell.mod -o=$(GOBIN)/misspell-v0.3.4 "github.com/client9/misspell/cmd/misspell" | ||
.bingo/misspell.mod: ; | ||
|
||
PROMETHEUS_ARRAY ?= $(GOBIN)/prometheus-v1.8.2-0.20200507164740-ecee9c8abfd1 $(GOBIN)/prometheus-v2.4.3+incompatible | ||
$(PROMETHEUS_ARRAY): .bingo/prometheus.1.mod .bingo/prometheus.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/prometheus-v1.8.2-0.20200507164740-ecee9c8abfd1" | ||
@$(GO) build -modfile=.bingo/prometheus.1.mod -o=$(GOBIN)/prometheus-v1.8.2-0.20200507164740-ecee9c8abfd1 "github.com/prometheus/prometheus/cmd/prometheus" | ||
@echo "(re)installing $(GOBIN)/prometheus-v2.4.3+incompatible" | ||
@$(GO) build -modfile=.bingo/prometheus.mod -o=$(GOBIN)/prometheus-v2.4.3+incompatible "github.com/prometheus/prometheus/cmd/prometheus" | ||
.bingo/prometheus.1.mod: ; | ||
.bingo/prometheus.mod: ; | ||
|
||
PROMTOOL ?= $(GOBIN)/promtool-v1.8.2-0.20200522113006-f4dd45609a05 | ||
$(PROMTOOL): .bingo/promtool.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/promtool-v1.8.2-0.20200522113006-f4dd45609a05" | ||
@$(GO) build -modfile=.bingo/promtool.mod -o=$(GOBIN)/promtool-v1.8.2-0.20200522113006-f4dd45609a05 "github.com/prometheus/prometheus/cmd/promtool" | ||
.bingo/promtool.mod: ; | ||
|
||
PROMU ?= $(GOBIN)/promu-v0.5.0 | ||
$(PROMU): .bingo/promu.mod | ||
@# Install binary/ries using Go 1.14+ build command. This is using bwplotka/bingo-controlled, separate go module with pinned dependencies. | ||
@echo "(re)installing $(GOBIN)/promu-v0.5.0" | ||
@$(GO) build -modfile=.bingo/promu.mod -o=$(GOBIN)/promu-v0.5.0 "github.com/prometheus/promu" | ||
.bingo/promu.mod: ; | ||
|
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/prometheus/alertmanager v0.20.0 // cmd/alertmanager |
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/campoy/embedmd v0.0.0-20181127031020-97c13d6e4160 |
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/fatih/faillint v1.5.0 |
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/go-bindata/go-bindata v3.1.1+incompatible // go-bindata |
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require golang.org/x/tools v0.0.0-20200526224456-8b020aee10d2 // cmd/goimports |
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/brancz/gojsontoyaml v0.0.0-20191212081931-bf2969bbd742 |
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/golangci/golangci-lint v1.27.0 // cmd/golangci-lint |
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,9 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require ( | ||
github.com/gobuffalo/envy v1.9.0 // indirect | ||
// v0.55.3 This needs to match with version in netlify.toml | ||
github.com/gohugoio/hugo v0.55.3 | ||
) |
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/jsonnet-bundler/jsonnet-bundler v0.2.1-0.20200211220001-efe0c9e86443 // cmd/jb |
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/google/go-jsonnet v0.16.0 // cmd/jsonnet |
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/google/go-jsonnet v0.16.0 // cmd/jsonnetfmt |
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,16 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require ( | ||
github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815 // indirect | ||
github.com/fatih/color v1.9.0 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/raviqqe/liche v0.0.0-20181124191719-2a2e6e56f6c6 | ||
github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect | ||
github.com/valyala/fasthttp v1.13.1 // indirect | ||
golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2 // indirect | ||
gopkg.in/russross/blackfriday.v2 v2.0.1 | ||
) | ||
|
||
replace gopkg.in/russross/blackfriday.v2 => github.com/russross/blackfriday/v2 v2.0.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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/minio/minio v0.0.0-20200527010300-cccf2de129da |
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/client9/misspell v0.3.4 // cmd/misspell |
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,15 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
replace ( | ||
// Mitigation for: https://github.com/Azure/go-autorest/issues/414 | ||
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.3.0+incompatible | ||
k8s.io/api => k8s.io/api v0.17.5 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.17.5 | ||
k8s.io/client-go => k8s.io/client-go v0.17.5 | ||
k8s.io/klog => github.com/simonpasquier/klog-gokit v0.1.0 | ||
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20190228160746-b3a7cee44a30 | ||
) | ||
|
||
require github.com/prometheus/prometheus v1.8.2-0.20200507164740-ecee9c8abfd1 // cmd/prometheus |
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,70 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
replace ( | ||
// Ridiculous but Prometheus v2.4.3 did not have Go modules | ||
github.com/Azure/azure-sdk-for-go => github.com/Azure/azure-sdk-for-go v5.0.0-beta.0.20161028183111-bd73d950fa44+incompatible | ||
github.com/Azure/go-autorest => github.com/Azure/go-autorest v9.9.0+incompatible | ||
github.com/cockroachdb/cmux => github.com/cockroachdb/cmux v0.0.0-20170110192607-30d10be49292 | ||
github.com/cockroachdb/cockroach => github.com/cockroachdb/cockroach v0.0.0-20170608034007-84bc9597164f | ||
github.com/googleapis/gnostic => github.com/googleapis/gnostic v0.2.3-0.20180520015035-48a0ecefe2e4 | ||
github.com/miekg/dns => github.com/miekg/dns v1.0.4 | ||
github.com/prometheus/client_golang => github.com/prometheus/client_golang v0.9.0-pre1.0.20180607123607-faf4ec335fe0 | ||
github.com/prometheus/common => github.com/prometheus/common v0.0.0-20180518154759-7600349dcfe1 | ||
github.com/prometheus/tsdb => github.com/prometheus/tsdb v0.0.0-20180921053122-9c8ca47399a7 | ||
k8s.io/api => k8s.io/api v0.0.0-20180628040859-072894a440bd | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.0.0-20180621070125-103fd098999d | ||
k8s.io/client-go => k8s.io/client-go v8.0.0+incompatible | ||
k8s.io/klog => github.com/simonpasquier/klog-gokit v0.1.0 | ||
) | ||
|
||
require ( | ||
github.com/Azure/azure-sdk-for-go v0.0.0-00010101000000-000000000000 // indirect | ||
github.com/Azure/go-autorest v0.0.0-00010101000000-000000000000 // indirect | ||
github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect | ||
github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect | ||
github.com/aws/aws-sdk-go v1.31.5 // indirect | ||
github.com/beorn7/perks v1.0.1 // indirect | ||
github.com/certifi/gocertifi v0.0.0-20200211180108-c7c1fbc02894 // indirect | ||
github.com/cespare/xxhash v1.1.0 // indirect | ||
github.com/cockroachdb/cmux v0.0.0-20170110192607-30d10be49292 // indirect | ||
github.com/cockroachdb/cockroach v20.1.1+incompatible // indirect | ||
github.com/cockroachdb/errors v1.2.4 // indirect | ||
github.com/cockroachdb/logtags v0.0.0-20190617123548-eb05cc24525f // indirect | ||
github.com/cockroachdb/ttycolor v0.0.0-20180709150743-a1d5aaeb377d // indirect | ||
github.com/getsentry/raven-go v0.2.0 // indirect | ||
github.com/go-kit/kit v0.10.0 // indirect | ||
github.com/googleapis/gnostic v0.0.0-00010101000000-000000000000 // indirect | ||
github.com/gophercloud/gophercloud v0.11.0 // indirect | ||
github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect | ||
github.com/grpc-ecosystem/grpc-gateway v1.14.6 // indirect | ||
github.com/hashicorp/consul/api v1.4.0 // indirect | ||
github.com/jaegertracing/jaeger v1.18.0 // indirect | ||
github.com/jpillora/backoff v1.0.0 // indirect | ||
github.com/julienschmidt/httprouter v1.3.0 // indirect | ||
github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect | ||
github.com/miekg/dns v1.1.29 // indirect | ||
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect | ||
github.com/oklog/ulid v1.3.1 // indirect | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/petermattis/goid v0.0.0-20180202154549-b0b1615b78e5 // indirect | ||
github.com/prometheus/client_golang v1.6.0 // indirect | ||
github.com/prometheus/common v0.10.0 // indirect | ||
github.com/prometheus/prometheus v2.4.3+incompatible // cmd/prometheus | ||
github.com/prometheus/tsdb v0.10.0 // indirect | ||
github.com/sasha-s/go-deadlock v0.2.0 // indirect | ||
github.com/shurcooL/httpfs v0.0.0-20190707220628-8d4bc4ba7749 // indirect | ||
github.com/shurcooL/vfsgen v0.0.0-20181202132449-6a9ea43bcacd // indirect | ||
golang.org/x/net v0.0.0-20200520182314-0ba52f642ac2 // indirect | ||
golang.org/x/time v0.0.0-20200416051211-89c76fbcd5d1 // indirect | ||
google.golang.org/api v0.25.0 // indirect | ||
google.golang.org/genproto v0.0.0-20200527145253-8367513e4ece // indirect | ||
gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect | ||
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
k8s.io/api v0.18.3 // indirect | ||
k8s.io/apimachinery v0.18.3 // indirect | ||
k8s.io/client-go v11.0.0+incompatible // indirect | ||
k8s.io/utils v0.0.0-20200520001619-278ece378a50 // 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require ( | ||
contrib.go.opencensus.io/exporter/ocagent v0.6.0 // indirect | ||
github.com/Azure/go-autorest v11.2.8+incompatible // indirect | ||
github.com/Azure/go-autorest/autorest v0.10.2 // indirect | ||
github.com/Azure/go-autorest/autorest/adal v0.8.3 // indirect | ||
github.com/Azure/go-autorest/autorest/to v0.3.0 // indirect | ||
github.com/Azure/go-autorest/autorest/validation v0.2.0 // indirect | ||
github.com/aws/aws-sdk-go v1.31.5 // indirect | ||
github.com/go-kit/kit v0.10.0 // indirect | ||
github.com/google/pprof v0.0.0-20200507031123-427632fa3b1c // indirect | ||
github.com/gophercloud/gophercloud v0.11.0 // indirect | ||
github.com/hashicorp/consul/api v1.4.0 // indirect | ||
github.com/jpillora/backoff v1.0.0 // indirect | ||
github.com/miekg/dns v1.1.29 // indirect | ||
github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect | ||
github.com/prometheus/client_golang v1.6.0 // indirect | ||
github.com/prometheus/common v0.10.0 // indirect | ||
github.com/prometheus/prometheus v1.8.2-0.20200522113006-f4dd45609a05 // cmd/promtool | ||
github.com/prometheus/tsdb v0.10.0 // indirect | ||
google.golang.org/api v0.25.0 // indirect | ||
gopkg.in/fsnotify/fsnotify.v1 v1.4.7 // indirect | ||
gopkg.in/yaml.v2 v2.3.0 // indirect | ||
k8s.io/api v0.18.3 // indirect | ||
k8s.io/client-go v11.0.0+incompatible // indirect | ||
k8s.io/utils v0.0.0-20200520001619-278ece378a50 // indirect | ||
) | ||
|
||
replace ( | ||
// Mitigation for: https://github.com/Azure/go-autorest/issues/414 | ||
github.com/Azure/go-autorest => github.com/Azure/go-autorest v12.3.0+incompatible | ||
k8s.io/api => k8s.io/api v0.17.5 | ||
k8s.io/apimachinery => k8s.io/apimachinery v0.17.5 | ||
k8s.io/client-go => k8s.io/client-go v0.17.5 | ||
k8s.io/klog => k8s.io/klog v0.3.1 | ||
k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20190228160746-b3a7cee44a30 | ||
) |
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,5 @@ | ||
module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT | ||
|
||
go 1.14 | ||
|
||
require github.com/prometheus/promu v0.5.0 |
Oops, something went wrong.