diff --git a/.bingo/.gitignore b/.bingo/.gitignore deleted file mode 100644 index 4f2055b6e..000000000 --- a/.bingo/.gitignore +++ /dev/null @@ -1,12 +0,0 @@ - -# Ignore everything -* - -# But not these files: -!.gitignore -!*.mod -!README.md -!Variables.mk -!variables.env - -*tmp.mod diff --git a/.bingo/README.md b/.bingo/README.md deleted file mode 100644 index 7a5c2d4f6..000000000 --- a/.bingo/README.md +++ /dev/null @@ -1,14 +0,0 @@ -# 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 ` to install that have own module file in this directory. -* For Makefile: Make sure to put `include .bingo/Variables.mk` in your Makefile, then use $() variable where is the .bingo/.mod. -* For shell: Run `source .bingo/variables.env` to source all environment variable for each tool. -* For go: Import `.bingo/variables.go` to for variable names. -* See https://github.com/bwplotka/bingo or -h on how to add, remove or change binaries dependencies. - -## Requirements - -* Go 1.14+ diff --git a/.bingo/Variables.mk b/.bingo/Variables.mk deleted file mode 100644 index 17dc2a502..000000000 --- a/.bingo/Variables.mk +++ /dev/null @@ -1,55 +0,0 @@ -# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.6. DO NOT EDIT. -# All tools are designed to be build inside $GOBIN. -BINGO_DIR := $(dir $(lastword $(MAKEFILE_LIST))) -GOPATH ?= $(shell go env GOPATH) -GOBIN ?= $(firstword $(subst :, ,${GOPATH}))/bin -GO ?= $(shell which go) - -# Below 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 benchstat variable: -# -# In your main Makefile (for non array binaries): -# -#include .bingo/Variables.mk # Assuming -dir was set to .bingo . -# -#command: $(BENCHSTAT) -# @echo "Running benchstat" -# @$(BENCHSTAT) -# -BENCHSTAT := $(GOBIN)/benchstat-v0.0.0-20211012211434-03971e389cd3 -$(BENCHSTAT): $(BINGO_DIR)/benchstat.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)/benchstat-v0.0.0-20211012211434-03971e389cd3" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=benchstat.mod -o=$(GOBIN)/benchstat-v0.0.0-20211012211434-03971e389cd3 "golang.org/x/perf/cmd/benchstat" - -BINGO := $(GOBIN)/bingo-v0.5.1 -$(BINGO): $(BINGO_DIR)/bingo.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)/bingo-v0.5.1" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=bingo.mod -o=$(GOBIN)/bingo-v0.5.1 "github.com/bwplotka/bingo" - -GOLANGCI_LINT := $(GOBIN)/golangci-lint-v1.56.2 -$(GOLANGCI_LINT): $(BINGO_DIR)/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.56.2" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=golangci-lint.mod -o=$(GOBIN)/golangci-lint-v1.56.2 "github.com/golangci/golangci-lint/cmd/golangci-lint" - -JB := $(GOBIN)/jb-v0.4.0 -$(JB): $(BINGO_DIR)/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.4.0" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=jb.mod -o=$(GOBIN)/jb-v0.4.0 "github.com/jsonnet-bundler/jsonnet-bundler/cmd/jb" - -JSONNET := $(GOBIN)/jsonnet-v0.17.0 -$(JSONNET): $(BINGO_DIR)/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.17.0" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=jsonnet.mod -o=$(GOBIN)/jsonnet-v0.17.0 "github.com/google/go-jsonnet/cmd/jsonnet" - -KIND := $(GOBIN)/kind-v0.11.1 -$(KIND): $(BINGO_DIR)/kind.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)/kind-v0.11.1" - @cd $(BINGO_DIR) && $(GO) build -mod=mod -modfile=kind.mod -o=$(GOBIN)/kind-v0.11.1 "sigs.k8s.io/kind" - diff --git a/.bingo/benchstat.mod b/.bingo/benchstat.mod deleted file mode 100644 index d4e8192bf..000000000 --- a/.bingo/benchstat.mod +++ /dev/null @@ -1,5 +0,0 @@ -module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT - -go 1.17 - -require golang.org/x/perf v0.0.0-20211012211434-03971e389cd3 // cmd/benchstat diff --git a/.bingo/bingo.mod b/.bingo/bingo.mod deleted file mode 100644 index a40810276..000000000 --- a/.bingo/bingo.mod +++ /dev/null @@ -1,5 +0,0 @@ -module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT - -go 1.16 - -require github.com/bwplotka/bingo v0.5.1 diff --git a/.bingo/go.mod b/.bingo/go.mod deleted file mode 100644 index 610249af0..000000000 --- a/.bingo/go.mod +++ /dev/null @@ -1 +0,0 @@ -module _ // Fake go.mod auto-created by 'bingo' for go -moddir compatibility with non-Go projects. Commit this file, together with other .mod files. \ No newline at end of file diff --git a/.bingo/golangci-lint.mod b/.bingo/golangci-lint.mod deleted file mode 100644 index a36d6f8e1..000000000 --- a/.bingo/golangci-lint.mod +++ /dev/null @@ -1,639 +0,0 @@ -module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT - -go 1.21 - -toolchain go1.21.7 - -require github.com/golangci/golangci-lint v1.56.2 // cmd/golangci-lint - -require ( - 4d63.com/gocheckcompilerdirectives v1.2.1 // indirect - 4d63.com/gochecknoglobals v0.2.1 // indirect - bitbucket.org/creachadair/shell v0.0.6 // indirect - cloud.google.com/go v0.110.10 // indirect - cloud.google.com/go/accessapproval v1.7.4 // indirect - cloud.google.com/go/accesscontextmanager v1.8.4 // indirect - cloud.google.com/go/aiplatform v1.52.0 // indirect - cloud.google.com/go/analytics v0.21.6 // indirect - cloud.google.com/go/apigateway v1.6.4 // indirect - cloud.google.com/go/apigeeconnect v1.6.4 // indirect - cloud.google.com/go/apigeeregistry v0.8.2 // indirect - cloud.google.com/go/apikeys v0.6.0 // indirect - cloud.google.com/go/appengine v1.8.4 // indirect - cloud.google.com/go/area120 v0.8.4 // indirect - cloud.google.com/go/artifactregistry v1.14.6 // indirect - cloud.google.com/go/asset v1.15.3 // indirect - cloud.google.com/go/assuredworkloads v1.11.4 // indirect - cloud.google.com/go/automl v1.13.4 // indirect - cloud.google.com/go/baremetalsolution v1.2.3 // indirect - cloud.google.com/go/batch v1.6.3 // indirect - cloud.google.com/go/beyondcorp v1.0.3 // indirect - cloud.google.com/go/bigquery v1.57.1 // indirect - cloud.google.com/go/billing v1.17.4 // indirect - cloud.google.com/go/binaryauthorization v1.7.3 // indirect - cloud.google.com/go/certificatemanager v1.7.4 // indirect - cloud.google.com/go/channel v1.17.3 // indirect - cloud.google.com/go/cloudbuild v1.14.3 // indirect - cloud.google.com/go/clouddms v1.7.3 // indirect - cloud.google.com/go/cloudtasks v1.12.4 // indirect - cloud.google.com/go/compute v1.23.3 // indirect - cloud.google.com/go/compute/metadata v0.2.3 // indirect - cloud.google.com/go/contactcenterinsights v1.11.3 // indirect - cloud.google.com/go/container v1.27.1 // indirect - cloud.google.com/go/containeranalysis v0.11.3 // indirect - cloud.google.com/go/datacatalog v1.18.3 // indirect - cloud.google.com/go/dataflow v0.9.4 // indirect - cloud.google.com/go/dataform v0.9.1 // indirect - cloud.google.com/go/datafusion v1.7.4 // indirect - cloud.google.com/go/datalabeling v0.8.4 // indirect - cloud.google.com/go/dataplex v1.11.1 // indirect - cloud.google.com/go/dataproc v1.12.0 // indirect - cloud.google.com/go/dataproc/v2 v2.2.3 // indirect - cloud.google.com/go/dataqna v0.8.4 // indirect - cloud.google.com/go/datastore v1.15.0 // indirect - cloud.google.com/go/datastream v1.10.3 // indirect - cloud.google.com/go/deploy v1.14.2 // indirect - cloud.google.com/go/dialogflow v1.44.3 // indirect - cloud.google.com/go/dlp v1.11.1 // indirect - cloud.google.com/go/documentai v1.23.5 // indirect - cloud.google.com/go/domains v0.9.4 // indirect - cloud.google.com/go/edgecontainer v1.1.4 // indirect - cloud.google.com/go/errorreporting v0.3.0 // indirect - cloud.google.com/go/essentialcontacts v1.6.5 // indirect - cloud.google.com/go/eventarc v1.13.3 // indirect - cloud.google.com/go/filestore v1.7.4 // indirect - cloud.google.com/go/firestore v1.14.0 // indirect - cloud.google.com/go/functions v1.15.4 // indirect - cloud.google.com/go/gaming v1.10.1 // indirect - cloud.google.com/go/gkebackup v1.3.4 // indirect - cloud.google.com/go/gkeconnect v0.8.4 // indirect - cloud.google.com/go/gkehub v0.14.4 // indirect - cloud.google.com/go/gkemulticloud v1.0.3 // indirect - cloud.google.com/go/grafeas v0.3.0 // indirect - cloud.google.com/go/gsuiteaddons v1.6.4 // indirect - cloud.google.com/go/iam v1.1.5 // indirect - cloud.google.com/go/iap v1.9.3 // indirect - cloud.google.com/go/ids v1.4.4 // indirect - cloud.google.com/go/iot v1.7.4 // indirect - cloud.google.com/go/kms v1.15.5 // indirect - cloud.google.com/go/language v1.12.2 // indirect - cloud.google.com/go/lifesciences v0.9.4 // indirect - cloud.google.com/go/logging v1.8.1 // indirect - cloud.google.com/go/longrunning v0.5.4 // indirect - cloud.google.com/go/managedidentities v1.6.4 // indirect - cloud.google.com/go/maps v1.6.1 // indirect - cloud.google.com/go/mediatranslation v0.8.4 // indirect - cloud.google.com/go/memcache v1.10.4 // indirect - cloud.google.com/go/metastore v1.13.3 // indirect - cloud.google.com/go/monitoring v1.16.3 // indirect - cloud.google.com/go/networkconnectivity v1.14.3 // indirect - cloud.google.com/go/networkmanagement v1.9.3 // indirect - cloud.google.com/go/networksecurity v0.9.4 // indirect - cloud.google.com/go/notebooks v1.11.2 // indirect - cloud.google.com/go/optimization v1.6.2 // indirect - cloud.google.com/go/orchestration v1.8.4 // indirect - cloud.google.com/go/orgpolicy v1.11.4 // indirect - cloud.google.com/go/osconfig v1.12.4 // indirect - cloud.google.com/go/oslogin v1.12.2 // indirect - cloud.google.com/go/phishingprotection v0.8.4 // indirect - cloud.google.com/go/policytroubleshooter v1.10.2 // indirect - cloud.google.com/go/privatecatalog v0.9.4 // indirect - cloud.google.com/go/pubsub v1.33.0 // indirect - cloud.google.com/go/pubsublite v1.8.1 // indirect - cloud.google.com/go/recaptchaenterprise v1.3.1 // indirect - cloud.google.com/go/recaptchaenterprise/v2 v2.8.3 // indirect - cloud.google.com/go/recommendationengine v0.8.4 // indirect - cloud.google.com/go/recommender v1.11.3 // indirect - cloud.google.com/go/redis v1.14.1 // indirect - cloud.google.com/go/resourcemanager v1.9.4 // indirect - cloud.google.com/go/resourcesettings v1.6.4 // indirect - cloud.google.com/go/retail v1.14.4 // indirect - cloud.google.com/go/run v1.3.3 // indirect - cloud.google.com/go/scheduler v1.10.4 // indirect - cloud.google.com/go/secretmanager v1.11.4 // indirect - cloud.google.com/go/security v1.15.4 // indirect - cloud.google.com/go/securitycenter v1.24.2 // indirect - cloud.google.com/go/servicecontrol v1.11.1 // indirect - cloud.google.com/go/servicedirectory v1.11.3 // indirect - cloud.google.com/go/servicemanagement v1.8.0 // indirect - cloud.google.com/go/serviceusage v1.6.0 // indirect - cloud.google.com/go/shell v1.7.4 // indirect - cloud.google.com/go/spanner v1.51.0 // indirect - cloud.google.com/go/speech v1.20.1 // indirect - cloud.google.com/go/storage v1.35.1 // indirect - cloud.google.com/go/storagetransfer v1.10.3 // indirect - cloud.google.com/go/talent v1.6.5 // indirect - cloud.google.com/go/texttospeech v1.7.4 // indirect - cloud.google.com/go/tpu v1.6.4 // indirect - cloud.google.com/go/trace v1.10.4 // indirect - cloud.google.com/go/translate v1.9.3 // indirect - cloud.google.com/go/video v1.20.3 // indirect - cloud.google.com/go/videointelligence v1.11.4 // indirect - cloud.google.com/go/vision v1.2.0 // indirect - cloud.google.com/go/vision/v2 v2.7.5 // indirect - cloud.google.com/go/vmmigration v1.7.4 // indirect - cloud.google.com/go/vmwareengine v1.0.3 // indirect - cloud.google.com/go/vpcaccess v1.7.4 // indirect - cloud.google.com/go/webrisk v1.9.4 // indirect - cloud.google.com/go/websecurityscanner v1.6.4 // indirect - cloud.google.com/go/workflows v1.12.3 // indirect - contrib.go.opencensus.io/exporter/stackdriver v0.13.4 // indirect - dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9 // indirect - gioui.org v0.0.0-20210308172011-57750fc8a0a6 // indirect - git.sr.ht/~sbinet/gg v0.3.1 // indirect - github.com/4meepo/tagalign v1.3.3 // indirect - github.com/Abirdcfly/dupword v0.0.13 // indirect - github.com/Antonboom/errname v0.1.12 // indirect - github.com/Antonboom/nilnil v0.1.7 // indirect - github.com/Antonboom/testifylint v1.1.2 // indirect - github.com/BurntSushi/toml v1.3.2 // indirect - github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802 // indirect - github.com/DataDog/datadog-go v3.2.0+incompatible // indirect - github.com/Djarvur/go-err113 v0.0.0-20210108212216-aea10b59be24 // indirect - github.com/GaijinEntertainment/go-exhaustruct/v3 v3.2.0 // indirect - github.com/JohnCGriffin/overflow v0.0.0-20211019200055-46fa312c352c // indirect - github.com/Masterminds/goutils v1.1.0 // indirect - github.com/Masterminds/semver v1.5.0 // indirect - github.com/Masterminds/sprig v2.22.0+incompatible // indirect - github.com/OneOfOne/xxhash v1.2.2 // indirect - github.com/OpenPeeDeeP/depguard/v2 v2.2.0 // indirect - github.com/ajstarks/deck v0.0.0-20200831202436-30c9fc6549a9 // indirect - github.com/ajstarks/deck/generate v0.0.0-20210309230005-c3f852c02e19 // indirect - github.com/ajstarks/svgo v0.0.0-20211024235047-1546f124cd8b // indirect - github.com/alecthomas/assert/v2 v2.2.2 // indirect - github.com/alecthomas/go-check-sumtype v0.1.4 // indirect - github.com/alecthomas/repr v0.2.0 // indirect - github.com/alecthomas/template v0.0.0-20190718012654-fb15b899a751 // indirect - github.com/alecthomas/units v0.0.0-20190924025748-f65c72e2690d // indirect - github.com/alexkohler/nakedret/v2 v2.0.2 // indirect - github.com/alexkohler/prealloc v1.0.0 // indirect - github.com/alingse/asasalint v0.0.11 // indirect - github.com/andybalholm/brotli v1.0.4 // indirect - github.com/antihax/optional v1.0.0 // indirect - github.com/aokoli/goutils v1.0.1 // indirect - github.com/apache/arrow/go/v10 v10.0.1 // indirect - github.com/apache/arrow/go/v11 v11.0.0 // indirect - github.com/apache/arrow/go/v12 v12.0.0 // indirect - github.com/apache/thrift v0.16.0 // indirect - github.com/armon/circbuf v0.0.0-20150827004946-bbbad097214e // indirect - github.com/armon/consul-api v0.0.0-20180202201655-eb2c6b5be1b6 // indirect - github.com/armon/go-metrics v0.3.10 // indirect - github.com/armon/go-radix v1.0.0 // indirect - github.com/ashanbrown/forbidigo v1.6.0 // indirect - github.com/ashanbrown/makezero v1.1.1 // indirect - github.com/aws/aws-sdk-go v1.36.30 // indirect - github.com/benbjohnson/clock v1.1.0 // indirect - github.com/beorn7/perks v1.0.1 // indirect - github.com/bgentry/speakeasy v0.1.0 // indirect - github.com/bkielbasa/cyclop v1.2.1 // indirect - github.com/blizzy78/varnamelen v0.8.0 // indirect - github.com/bombsimon/wsl/v4 v4.2.1 // indirect - github.com/boombuler/barcode v1.0.1 // indirect - github.com/breml/bidichk v0.2.7 // indirect - github.com/breml/errchkjson v0.3.6 // indirect - github.com/butuzov/ireturn v0.3.0 // indirect - github.com/butuzov/mirror v1.1.0 // indirect - github.com/catenacyber/perfsprint v0.6.0 // indirect - github.com/ccojocar/zxcvbn-go v1.0.2 // indirect - github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect - github.com/cespare/xxhash v1.1.0 // indirect - github.com/cespare/xxhash/v2 v2.2.0 // indirect - github.com/charithe/durationcheck v0.0.10 // indirect - github.com/chavacava/garif v0.1.0 // indirect - github.com/chzyer/logex v1.1.10 // indirect - github.com/chzyer/readline v0.0.0-20180603132655-2972be24d48e // indirect - github.com/chzyer/test v0.0.0-20180213035817-a1ea475d72b1 // indirect - github.com/circonus-labs/circonus-gometrics v2.3.1+incompatible // indirect - github.com/circonus-labs/circonusllhist v0.1.3 // indirect - github.com/client9/misspell v0.3.4 // indirect - github.com/cncf/udpa/go v0.0.0-20220112060539-c52dc94e7fbe // indirect - github.com/cncf/xds/go v0.0.0-20230607035331-e9ce68804cb4 // indirect - github.com/cockroachdb/datadriven v0.0.0-20190809214429-80d97fb3cbaa // indirect - github.com/coreos/etcd v3.3.10+incompatible // indirect - github.com/coreos/go-etcd v2.0.0+incompatible // indirect - github.com/coreos/go-semver v0.3.0 // indirect - github.com/coreos/go-systemd v0.0.0-20190620071333-e64a0ec8b42a // indirect - github.com/coreos/go-systemd/v22 v22.3.2 // indirect - github.com/coreos/pkg v0.0.0-20180928190104-399ea9e2e55f // indirect - github.com/cpuguy83/go-md2man v1.0.10 // indirect - github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect - github.com/creack/pty v1.1.9 // indirect - github.com/cristalhq/acmd v0.11.2 // indirect - github.com/curioswitch/go-reassign v0.2.0 // indirect - github.com/daixiang0/gci v0.12.1 // indirect - github.com/davecgh/go-spew v1.1.1 // indirect - github.com/denis-tingaikin/go-header v0.4.3 // indirect - github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect - github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815 // indirect - github.com/dustin/go-humanize v1.0.1 // indirect - github.com/envoyproxy/go-control-plane v0.11.1 // indirect - github.com/envoyproxy/protoc-gen-validate v1.0.2 // indirect - github.com/esimonov/ifshort v1.0.4 // indirect - github.com/ettle/strcase v0.2.0 // indirect - github.com/fatih/color v1.16.0 // indirect - github.com/fatih/structtag v1.2.0 // indirect - github.com/firefart/nonamedreturns v1.0.4 // indirect - github.com/fogleman/gg v1.3.0 // indirect - github.com/frankban/quicktest v1.14.6 // indirect - github.com/fsnotify/fsnotify v1.5.4 // indirect - github.com/fullstorydev/grpcurl v1.6.0 // indirect - github.com/fzipp/gocyclo v0.6.0 // indirect - github.com/ghodss/yaml v1.0.0 // indirect - github.com/ghostiam/protogetter v0.3.4 // indirect - github.com/go-critic/go-critic v0.11.1 // indirect - github.com/go-fonts/dejavu v0.1.0 // indirect - github.com/go-fonts/latin-modern v0.2.0 // indirect - github.com/go-fonts/liberation v0.2.0 // indirect - github.com/go-fonts/stix v0.1.0 // indirect - github.com/go-gl/glfw v0.0.0-20190409004039-e6da0acd62b1 // indirect - github.com/go-gl/glfw/v3.3/glfw v0.0.0-20200222043503-6f7a984d4dc4 // indirect - github.com/go-kit/kit v0.9.0 // indirect - github.com/go-kit/log v0.1.0 // indirect - github.com/go-latex/latex v0.0.0-20210823091927-c0d11ff05a81 // indirect - github.com/go-logfmt/logfmt v0.5.0 // indirect - github.com/go-logr/logr v1.3.0 // indirect - github.com/go-ole/go-ole v1.2.6 // indirect - github.com/go-pdf/fpdf v0.6.0 // indirect - github.com/go-redis/redis v6.15.8+incompatible // indirect - github.com/go-sql-driver/mysql v1.7.1 // indirect - github.com/go-stack/stack v1.8.0 // indirect - github.com/go-task/slim-sprig v0.0.0-20230315185526-52ccab3ef572 // indirect - github.com/go-toolsmith/astcast v1.1.0 // indirect - github.com/go-toolsmith/astcopy v1.1.0 // indirect - github.com/go-toolsmith/astequal v1.2.0 // indirect - github.com/go-toolsmith/astfmt v1.1.0 // indirect - github.com/go-toolsmith/astp v1.1.0 // indirect - github.com/go-toolsmith/pkgload v1.2.2 // indirect - github.com/go-toolsmith/strparse v1.1.0 // indirect - github.com/go-toolsmith/typep v1.1.0 // indirect - github.com/go-viper/mapstructure/v2 v2.0.0-alpha.1 // indirect - github.com/go-xmlfmt/xmlfmt v1.1.2 // indirect - github.com/gobwas/glob v0.2.3 // indirect - github.com/goccy/go-json v0.9.11 // indirect - github.com/godbus/dbus/v5 v5.0.4 // indirect - github.com/gofrs/flock v0.8.1 // indirect - github.com/gogo/protobuf v1.3.2 // indirect - github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0 // indirect - github.com/golang/glog v1.1.2 // indirect - github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect - github.com/golang/mock v1.6.0 // indirect - github.com/golang/protobuf v1.5.3 // indirect - github.com/golang/snappy v0.0.4 // indirect - github.com/golangci/check v0.0.0-20180506172741-cfe4005ccda2 // indirect - github.com/golangci/dupl v0.0.0-20180902072040-3e9179ac440a // indirect - github.com/golangci/go-misc v0.0.0-20220329215616-d24fe342adfe // indirect - github.com/golangci/gofmt v0.0.0-20231018234816-f50ced29576e // indirect - github.com/golangci/lint-1 v0.0.0-20191013205115-297bf364a8e0 // indirect - github.com/golangci/maligned v0.0.0-20180506175553-b1d89398deca // indirect - github.com/golangci/misspell v0.4.1 // indirect - github.com/golangci/revgrep v0.5.2 // indirect - github.com/golangci/unconvert v0.0.0-20180507085042-28b1c447d1f4 // indirect - github.com/google/btree v1.0.0 // indirect - github.com/google/certificate-transparency-go v1.1.1 // indirect - github.com/google/flatbuffers v2.0.8+incompatible // indirect - github.com/google/go-cmp v0.6.0 // indirect - github.com/google/go-pkcs11 v0.2.1-0.20230907215043-c6f79328ddf9 // indirect - github.com/google/gofuzz v1.0.0 // indirect - github.com/google/martian v2.1.0+incompatible // indirect - github.com/google/martian/v3 v3.3.2 // indirect - github.com/google/pprof v0.0.0-20210720184732-4bb14d4b1be1 // indirect - github.com/google/renameio v0.1.0 // indirect - github.com/google/s2a-go v0.1.7 // indirect - github.com/google/trillian v1.3.11 // indirect - github.com/google/uuid v1.6.0 // indirect - github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect - github.com/googleapis/gax-go/v2 v2.12.0 // indirect - github.com/googleapis/go-type-adapters v1.0.0 // indirect - github.com/googleapis/google-cloud-go-testing v0.0.0-20210719221736-1c9a4c676720 // indirect - github.com/gookit/color v1.5.4 // indirect - github.com/gordonklaus/ineffassign v0.1.0 // indirect - github.com/gorhill/cronexpr v0.0.0-20180427100037-88b0669f7d75 // indirect - github.com/gorilla/mux v1.8.0 // indirect - github.com/gorilla/websocket v1.4.1 // indirect - github.com/gostaticanalysis/analysisutil v0.7.1 // indirect - github.com/gostaticanalysis/comment v1.4.2 // indirect - github.com/gostaticanalysis/forcetypeassert v0.1.0 // indirect - github.com/gostaticanalysis/nilerr v0.1.1 // indirect - github.com/gostaticanalysis/testutil v0.4.0 // indirect - github.com/gregjones/httpcache v0.0.0-20190611155906-901d90724c79 // indirect - github.com/grpc-ecosystem/go-grpc-middleware v1.2.2 // indirect - github.com/grpc-ecosystem/go-grpc-prometheus v1.2.0 // indirect - github.com/grpc-ecosystem/grpc-gateway v1.16.0 // indirect - github.com/grpc-ecosystem/grpc-gateway/v2 v2.11.3 // indirect - github.com/hashicorp/consul/api v1.12.0 // indirect - github.com/hashicorp/consul/sdk v0.8.0 // indirect - github.com/hashicorp/errwrap v1.0.0 // indirect - github.com/hashicorp/go-cleanhttp v0.5.2 // indirect - github.com/hashicorp/go-hclog v1.2.0 // indirect - github.com/hashicorp/go-immutable-radix v1.3.1 // indirect - github.com/hashicorp/go-msgpack v0.5.3 // indirect - github.com/hashicorp/go-multierror v1.1.0 // indirect - github.com/hashicorp/go-retryablehttp v0.5.3 // indirect - github.com/hashicorp/go-rootcerts v1.0.2 // indirect - github.com/hashicorp/go-sockaddr v1.0.0 // indirect - github.com/hashicorp/go-syslog v1.0.0 // indirect - github.com/hashicorp/go-uuid v1.0.1 // indirect - github.com/hashicorp/go-version v1.6.0 // indirect - github.com/hashicorp/golang-lru v0.5.4 // indirect - github.com/hashicorp/hcl v1.0.0 // indirect - github.com/hashicorp/logutils v1.0.0 // indirect - github.com/hashicorp/mdns v1.0.4 // indirect - github.com/hashicorp/memberlist v0.3.0 // indirect - github.com/hashicorp/serf v0.9.7 // indirect - github.com/hexops/gotextdiff v1.0.3 // indirect - github.com/hpcloud/tail v1.0.0 // indirect - github.com/huandu/xstrings v1.2.0 // indirect - github.com/iancoleman/strcase v0.2.0 // indirect - github.com/ianlancetaylor/demangle v0.0.0-20200824232613-28f6c0f3b639 // indirect - github.com/imdario/mergo v0.3.8 // indirect - github.com/inconshreveable/mousetrap v1.1.0 // indirect - github.com/jackc/pgpassfile v1.0.0 // indirect - github.com/jackc/pgservicefile v0.0.0-20221227161230-091c0ba34f0a // indirect - github.com/jackc/pgx/v5 v5.4.3 // indirect - github.com/jackc/puddle/v2 v2.2.1 // indirect - github.com/jgautheron/goconst v1.7.0 // indirect - github.com/jhump/protoreflect v1.6.1 // indirect - github.com/jingyugao/rowserrcheck v1.1.1 // indirect - github.com/jirfag/go-printf-func-name v0.0.0-20200119135958-7558a9eaa5af // indirect - github.com/jjti/go-spancheck v0.5.2 // indirect - github.com/jmespath/go-jmespath v0.4.0 // indirect - github.com/jmespath/go-jmespath/internal/testify v1.5.1 // indirect - github.com/jmoiron/sqlx v1.3.5 // indirect - github.com/jonboulle/clockwork v0.2.0 // indirect - github.com/josharian/txtarfs v0.0.0-20210218200122-0702f000015a // indirect - github.com/jpillora/backoff v1.0.0 // indirect - github.com/json-iterator/go v1.1.12 // indirect - github.com/jstemmer/go-junit-report v0.9.1 // indirect - github.com/juju/ratelimit v1.0.1 // indirect - github.com/julienschmidt/httprouter v1.3.0 // indirect - github.com/julz/importas v0.1.0 // indirect - github.com/jung-kurt/gofpdf v1.0.3-0.20190309125859-24315acbbda5 // indirect - github.com/k0kubun/colorstring v0.0.0-20150214042306-9440f1994b88 // indirect - github.com/kballard/go-shellquote v0.0.0-20180428030007-95032a82bc51 // indirect - github.com/kisielk/errcheck v1.7.0 // indirect - github.com/kisielk/gotool v1.0.0 // indirect - github.com/kkHAIKE/contextcheck v1.1.4 // indirect - github.com/klauspost/asmfmt v1.3.2 // indirect - github.com/klauspost/compress v1.15.9 // indirect - github.com/klauspost/cpuid/v2 v2.0.9 // indirect - github.com/konsorten/go-windows-terminal-sequences v1.0.3 // indirect - github.com/kr/fs v0.1.0 // indirect - github.com/kr/logfmt v0.0.0-20140226030751-b84e30acd515 // indirect - github.com/kr/pretty v0.3.1 // indirect - github.com/kr/pty v1.1.1 // indirect - github.com/kr/text v0.2.0 // indirect - github.com/kulti/thelper v0.6.3 // indirect - github.com/kunwardeep/paralleltest v1.0.9 // indirect - github.com/kylelemons/godebug v1.1.0 // indirect - github.com/kyoh86/exportloopref v0.1.11 // indirect - github.com/ldez/gomoddirectives v0.2.3 // indirect - github.com/ldez/tagliatelle v0.5.0 // indirect - github.com/leonklingele/grouper v1.1.1 // indirect - github.com/letsencrypt/pkcs11key/v4 v4.0.0 // indirect - github.com/lib/pq v1.10.9 // indirect - github.com/lufeee/execinquery v1.2.1 // indirect - github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect - github.com/lyft/protoc-gen-star v0.6.1 // indirect - github.com/lyft/protoc-gen-star/v2 v2.0.3 // indirect - github.com/macabu/inamedparam v0.1.3 // indirect - github.com/magefile/mage v1.14.0 // indirect - github.com/magiconair/properties v1.8.6 // indirect - github.com/maratori/testableexamples v1.0.0 // indirect - github.com/maratori/testpackage v1.1.1 // indirect - github.com/matoous/godox v0.0.0-20230222163458-006bad1f9d26 // indirect - github.com/matryer/is v1.4.0 // indirect - github.com/mattn/go-colorable v0.1.13 // indirect - github.com/mattn/go-isatty v0.0.20 // indirect - github.com/mattn/go-runewidth v0.0.9 // indirect - github.com/mattn/go-sqlite3 v1.14.15 // indirect - github.com/matttproud/golang_protobuf_extensions v1.0.1 // indirect - github.com/mbilski/exhaustivestruct v1.2.0 // indirect - github.com/mgechev/dots v0.0.0-20210922191527-e955255bf517 // indirect - github.com/mgechev/revive v1.3.7 // indirect - github.com/miekg/dns v1.1.41 // indirect - github.com/miekg/pkcs11 v1.0.3 // indirect - github.com/minio/asm2plan9s v0.0.0-20200509001527-cdd76441f9d8 // indirect - github.com/minio/c2goasm v0.0.0-20190812172519-36a3d3bbc4f3 // indirect - github.com/mitchellh/cli v1.1.0 // indirect - github.com/mitchellh/copystructure v1.0.0 // indirect - github.com/mitchellh/go-homedir v1.1.0 // indirect - github.com/mitchellh/go-ps v1.0.0 // indirect - github.com/mitchellh/go-testing-interface v1.0.0 // indirect - github.com/mitchellh/mapstructure v1.5.0 // indirect - github.com/mitchellh/reflectwalk v1.0.1 // indirect - github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect - github.com/modern-go/reflect2 v1.0.2 // indirect - github.com/mohae/deepcopy v0.0.0-20170929034955-c48cc78d4826 // indirect - github.com/moricho/tparallel v0.3.1 // indirect - github.com/mozilla/scribe v0.0.0-20180711195314-fb71baf557c1 // indirect - github.com/mozilla/tls-observatory v0.0.0-20210609171429-7bc42856d2e5 // indirect - github.com/mwitkow/go-conntrack v0.0.0-20190716064945-2f068394615f // indirect - github.com/mwitkow/go-proto-validators v0.2.0 // indirect - github.com/nakabonne/nestif v0.3.1 // indirect - github.com/nishanths/exhaustive v0.12.0 // indirect - github.com/nishanths/predeclared v0.2.2 // indirect - github.com/nunnatsa/ginkgolinter v0.15.2 // indirect - github.com/nxadm/tail v1.4.8 // indirect - github.com/olekukonko/tablewriter v0.0.5 // indirect - github.com/onsi/ginkgo v1.16.4 // indirect - github.com/onsi/ginkgo/v2 v2.15.0 // indirect - github.com/onsi/gomega v1.31.1 // indirect - github.com/opentracing/opentracing-go v1.1.0 // indirect - github.com/otiai10/copy v1.14.0 // indirect - github.com/otiai10/curr v1.0.0 // indirect - github.com/otiai10/mint v1.5.1 // indirect - github.com/pascaldekloe/goe v0.1.0 // indirect - github.com/pelletier/go-toml v1.9.5 // indirect - github.com/pelletier/go-toml/v2 v2.0.5 // indirect - github.com/peterbourgon/diskv v2.0.1+incompatible // indirect - github.com/phayes/checkstyle v0.0.0-20170904204023-bfd46e6a821d // indirect - github.com/phpdave11/gofpdf v1.4.2 // indirect - github.com/phpdave11/gofpdi v1.0.13 // indirect - github.com/pierrec/lz4/v4 v4.1.15 // indirect - github.com/pkg/diff v0.0.0-20210226163009-20ebb0f2a09e // indirect - github.com/pkg/errors v0.9.1 // indirect - github.com/pkg/sftp v1.13.6 // indirect - github.com/pmezard/go-difflib v1.0.0 // indirect - github.com/polyfloyd/go-errorlint v1.4.8 // indirect - github.com/posener/complete v1.2.3 // indirect - github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect - github.com/prometheus/client_golang v1.12.1 // indirect - github.com/prometheus/client_model v0.4.0 // indirect - github.com/prometheus/common v0.32.1 // indirect - github.com/prometheus/procfs v0.7.3 // indirect - github.com/pseudomuto/protoc-gen-doc v1.3.2 // indirect - github.com/pseudomuto/protokit v0.2.0 // indirect - github.com/quasilyte/go-ruleguard v0.4.0 // indirect - github.com/quasilyte/go-ruleguard/dsl v0.3.22 // indirect - github.com/quasilyte/go-ruleguard/rules v0.0.0-20211022131956-028d6511ab71 // indirect - github.com/quasilyte/gogrep v0.5.0 // indirect - github.com/quasilyte/regex/syntax v0.0.0-20210819130434-b3f0c404a727 // indirect - github.com/quasilyte/stdinfo v0.0.0-20220114132959-f7386bf02567 // indirect - github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect - github.com/remyoudompheng/go-dbus v0.0.0-20121104212943-b7232d34b1d5 // indirect - github.com/remyoudompheng/go-liblzma v0.0.0-20190506200333-81bf2d431b96 // indirect - github.com/remyoudompheng/go-misc v0.0.0-20190427085024-2d6ac652a50e // indirect - github.com/rogpeppe/fastuuid v1.2.0 // indirect - github.com/rogpeppe/go-internal v1.12.0 // indirect - github.com/rs/cors v1.7.0 // indirect - github.com/russross/blackfriday v1.5.2 // indirect - github.com/russross/blackfriday/v2 v2.1.0 // indirect - github.com/ruudk/golang-pdf417 v0.0.0-20201230142125-a7e3863a1245 // indirect - github.com/ryancurrah/gomodguard v1.3.0 // indirect - github.com/ryanrolds/sqlclosecheck v0.5.1 // indirect - github.com/ryanuber/columnize v0.0.0-20160712163229-9b3edd62028f // indirect - github.com/sagikazarmark/crypt v0.6.0 // indirect - github.com/sanposhiho/wastedassign/v2 v2.0.7 // indirect - github.com/sashamelentyev/interfacebloat v1.1.0 // indirect - github.com/sashamelentyev/usestdlibvars v1.25.0 // indirect - github.com/sean-/seed v0.0.0-20170313163322-e2103e2c3529 // indirect - github.com/securego/gosec/v2 v2.19.0 // indirect - github.com/sergi/go-diff v1.1.0 // indirect - github.com/shazow/go-diff v0.0.0-20160112020656-b6b7b6733b8c // indirect - github.com/shirou/gopsutil/v3 v3.24.1 // indirect - github.com/shoenig/go-m1cpu v0.1.6 // indirect - github.com/shoenig/test v0.6.4 // indirect - github.com/shurcooL/go v0.0.0-20180423040247-9e1955d9fb6e // indirect - github.com/shurcooL/go-goon v0.0.0-20170922171312-37c2f522c041 // indirect - github.com/shurcooL/sanitized_anchor_name v1.0.0 // indirect - github.com/sirupsen/logrus v1.9.3 // indirect - github.com/sivchari/containedctx v1.0.3 // indirect - github.com/sivchari/nosnakecase v1.7.0 // indirect - github.com/sivchari/tenv v1.7.1 // indirect - github.com/soheilhy/cmux v0.1.4 // indirect - github.com/sonatard/noctx v0.0.2 // indirect - github.com/sourcegraph/go-diff v0.7.0 // indirect - github.com/spaolacci/murmur3 v0.0.0-20180118202830-f09979ecbc72 // indirect - github.com/spf13/afero v1.11.0 // indirect - github.com/spf13/cast v1.5.0 // indirect - github.com/spf13/cobra v1.7.0 // indirect - github.com/spf13/jwalterweatherman v1.1.0 // indirect - github.com/spf13/pflag v1.0.5 // indirect - github.com/spf13/viper v1.12.0 // indirect - github.com/ssgreg/nlreturn/v2 v2.2.1 // indirect - github.com/stbenjam/no-sprintf-host-port v0.1.1 // indirect - github.com/stretchr/objx v0.5.0 // indirect - github.com/stretchr/testify v1.8.4 // indirect - github.com/subosito/gotenv v1.4.1 // indirect - github.com/t-yuki/gocover-cobertura v0.0.0-20180217150009-aaee18c8195c // indirect - github.com/tdakkota/asciicheck v0.2.0 // indirect - github.com/tenntenn/modver v1.0.1 // indirect - github.com/tenntenn/text/transform v0.0.0-20200319021203-7eef512accb3 // indirect - github.com/tetafro/godot v1.4.16 // indirect - github.com/timakin/bodyclose v0.0.0-20230421092635-574207250966 // indirect - github.com/timonwong/loggercheck v0.9.4 // indirect - github.com/tklauser/go-sysconf v0.3.12 // indirect - github.com/tklauser/numcpus v0.6.1 // indirect - github.com/tmc/grpc-websocket-proxy v0.0.0-20200427203606-3cfed13b9966 // indirect - github.com/tomarrell/wrapcheck/v2 v2.8.1 // indirect - github.com/tomasen/realip v0.0.0-20180522021738-f0c99a92ddce // indirect - github.com/tommy-muehle/go-mnd/v2 v2.5.1 // indirect - github.com/tv42/httpunix v0.0.0-20150427012821-b75d8614f926 // indirect - github.com/ugorji/go/codec v0.0.0-20181204163529-d75b2dcb6bc8 // indirect - github.com/ultraware/funlen v0.1.0 // indirect - github.com/ultraware/whitespace v0.1.0 // indirect - github.com/urfave/cli v1.22.1 // indirect - github.com/uudashr/gocognit v1.1.2 // indirect - github.com/valyala/bytebufferpool v1.0.0 // indirect - github.com/valyala/fasthttp v1.30.0 // indirect - github.com/valyala/quicktemplate v1.7.0 // indirect - github.com/valyala/tcplisten v1.0.0 // indirect - github.com/viki-org/dnscache v0.0.0-20130720023526-c70c1f23c5d8 // indirect - github.com/xen0n/gosmopolitan v1.2.2 // indirect - github.com/xiang90/probing v0.0.0-20190116061207-43a291ad63a2 // indirect - github.com/xo/terminfo v0.0.0-20210125001918-ca9a967f8778 // indirect - github.com/xordataexchange/crypt v0.0.3-0.20170626215501-b2862e3d0a77 // indirect - github.com/yagipy/maintidx v1.0.0 // indirect - github.com/yeya24/promlinter v0.2.0 // indirect - github.com/ykadowak/zerologlint v0.1.5 // indirect - github.com/yudai/gojsondiff v1.0.0 // indirect - github.com/yudai/golcs v0.0.0-20170316035057-ecda9a501e82 // indirect - github.com/yudai/pp v2.0.1+incompatible // indirect - github.com/yuin/goldmark v1.4.13 // indirect - github.com/yusufpapurcu/wmi v1.2.3 // indirect - github.com/zeebo/assert v1.3.0 // indirect - github.com/zeebo/xxh3 v1.0.2 // indirect - gitlab.com/bosi/decorder v0.4.1 // indirect - go-simpler.org/assert v0.7.0 // indirect - go-simpler.org/musttag v0.8.0 // indirect - go-simpler.org/sloglint v0.4.0 // indirect - go.etcd.io/bbolt v1.3.4 // indirect - go.etcd.io/etcd v0.0.0-20200513171258-e048e166ab9c // indirect - go.etcd.io/etcd/api/v3 v3.5.4 // indirect - go.etcd.io/etcd/client/pkg/v3 v3.5.4 // indirect - go.etcd.io/etcd/client/v2 v2.305.4 // indirect - go.etcd.io/etcd/client/v3 v3.5.4 // indirect - go.mozilla.org/mozlog v0.0.0-20170222151521-4bb13139d403 // indirect - go.opencensus.io v0.24.0 // indirect - go.opentelemetry.io/proto/otlp v0.19.0 // indirect - go.uber.org/atomic v1.7.0 // indirect - go.uber.org/goleak v1.1.11 // indirect - go.uber.org/multierr v1.6.0 // indirect - go.uber.org/tools v0.0.0-20190618225709-2cfd321de3ee // indirect - go.uber.org/zap v1.24.0 // indirect - golang.org/x/crypto v0.19.0 // indirect - golang.org/x/exp v0.0.0-20240103183307-be819d1f06fc // indirect - golang.org/x/exp/typeparams v0.0.0-20231219180239-dc181d75b848 // indirect - golang.org/x/image v0.0.0-20220302094943-723b81ca9867 // indirect - golang.org/x/lint v0.0.0-20210508222113-6edffad5e616 // indirect - golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028 // indirect - golang.org/x/mod v0.15.0 // indirect - golang.org/x/net v0.21.0 // indirect - golang.org/x/oauth2 v0.15.0 // indirect - golang.org/x/sync v0.6.0 // indirect - golang.org/x/sys v0.17.0 // indirect - golang.org/x/telemetry v0.0.0-20240208230135-b75ee8823808 // indirect - golang.org/x/term v0.17.0 // indirect - golang.org/x/text v0.14.0 // indirect - golang.org/x/time v0.5.0 // indirect - golang.org/x/tools v0.18.0 // indirect - golang.org/x/xerrors v0.0.0-20220907171357-04be3eba64a2 // indirect - gonum.org/v1/gonum v0.11.0 // indirect - gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0 // indirect - gonum.org/v1/plot v0.10.1 // indirect - google.golang.org/api v0.152.0 // indirect - google.golang.org/appengine v1.6.7 // indirect - google.golang.org/genproto v0.0.0-20231106174013-bbf56f31fb17 // indirect - google.golang.org/genproto/googleapis/api v0.0.0-20231106174013-bbf56f31fb17 // indirect - google.golang.org/genproto/googleapis/bytestream v0.0.0-20231120223509-83a465c0220f // indirect - google.golang.org/genproto/googleapis/rpc v0.0.0-20231120223509-83a465c0220f // indirect - google.golang.org/grpc v1.59.0 // indirect - google.golang.org/grpc/cmd/protoc-gen-go-grpc v1.1.0 // indirect - google.golang.org/protobuf v1.31.0 // indirect - gopkg.in/alecthomas/kingpin.v2 v2.2.6 // indirect - gopkg.in/check.v1 v1.0.0-20201130134442-10cb98267c6c // indirect - gopkg.in/cheggaaa/pb.v1 v1.0.28 // indirect - gopkg.in/errgo.v2 v2.1.0 // indirect - gopkg.in/fsnotify.v1 v1.4.7 // indirect - gopkg.in/gcfg.v1 v1.2.3 // indirect - gopkg.in/ini.v1 v1.67.0 // indirect - gopkg.in/resty.v1 v1.12.0 // indirect - gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect - gopkg.in/warnings.v0 v0.1.2 // indirect - gopkg.in/yaml.v2 v2.4.0 // indirect - gopkg.in/yaml.v3 v3.0.1 // indirect - honnef.co/go/tools v0.4.6 // indirect - lukechampine.com/uint128 v1.2.0 // indirect - modernc.org/cc/v3 v3.40.0 // indirect - modernc.org/ccgo/v3 v3.16.13 // indirect - modernc.org/ccorpus v1.11.6 // indirect - modernc.org/httpfs v1.0.6 // indirect - modernc.org/libc v1.22.2 // indirect - modernc.org/mathutil v1.5.0 // indirect - modernc.org/memory v1.5.0 // indirect - modernc.org/opt v0.1.3 // indirect - modernc.org/sqlite v1.18.2 // indirect - modernc.org/strutil v1.1.3 // indirect - modernc.org/tcl v1.13.2 // indirect - modernc.org/token v1.1.0 // indirect - modernc.org/z v1.5.1 // indirect - mvdan.cc/gofumpt v0.6.0 // indirect - mvdan.cc/interfacer v0.0.0-20180901003855-c20040233aed // indirect - mvdan.cc/lint v0.0.0-20170908181259-adc824a0674b // indirect - mvdan.cc/unparam v0.0.0-20240104100049-c549a3470d14 // indirect - rsc.io/binaryregexp v0.2.0 // indirect - rsc.io/pdf v0.1.1 // indirect - rsc.io/quote/v3 v3.1.0 // indirect - rsc.io/sampler v1.3.0 // indirect - sigs.k8s.io/yaml v1.2.0 // indirect -) diff --git a/.bingo/jb.mod b/.bingo/jb.mod deleted file mode 100644 index 5bb66d76b..000000000 --- a/.bingo/jb.mod +++ /dev/null @@ -1,5 +0,0 @@ -module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT - -go 1.16 - -require github.com/jsonnet-bundler/jsonnet-bundler v0.4.0 // cmd/jb diff --git a/.bingo/jsonnet.mod b/.bingo/jsonnet.mod deleted file mode 100644 index 5cddc5729..000000000 --- a/.bingo/jsonnet.mod +++ /dev/null @@ -1,5 +0,0 @@ -module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT - -go 1.16 - -require github.com/google/go-jsonnet v0.17.0 // cmd/jsonnet diff --git a/.bingo/kind.mod b/.bingo/kind.mod deleted file mode 100644 index c726a6846..000000000 --- a/.bingo/kind.mod +++ /dev/null @@ -1,5 +0,0 @@ -module _ // Auto generated by https://github.com/bwplotka/bingo. DO NOT EDIT - -go 1.17 - -require sigs.k8s.io/kind v0.11.1 diff --git a/.bingo/variables.env b/.bingo/variables.env deleted file mode 100644 index 862dfc6fc..000000000 --- a/.bingo/variables.env +++ /dev/null @@ -1,22 +0,0 @@ -# Auto generated binary variables helper managed by https://github.com/bwplotka/bingo v0.6. DO NOT EDIT. -# All tools are designed to be build inside $GOBIN. -# Those variables will work only until 'bingo get' was invoked, or if tools were installed via Makefile's Variables.mk. -GOBIN=${GOBIN:=$(go env GOBIN)} - -if [ -z "$GOBIN" ]; then - GOBIN="$(go env GOPATH)/bin" -fi - - -BENCHSTAT="${GOBIN}/benchstat-v0.0.0-20211012211434-03971e389cd3" - -BINGO="${GOBIN}/bingo-v0.5.1" - -GOLANGCI_LINT="${GOBIN}/golangci-lint-v1.56.2" - -JB="${GOBIN}/jb-v0.4.0" - -JSONNET="${GOBIN}/jsonnet-v0.17.0" - -KIND="${GOBIN}/kind-v0.11.1" - diff --git a/.mk/development.mk b/.mk/development.mk index dc60ee491..86c470443 100644 --- a/.mk/development.mk +++ b/.mk/development.mk @@ -69,32 +69,32 @@ undeploy-netflow-simulator: ## Undeploy netflow simulator ##@ kind .PHONY: create-kind-cluster -create-kind-cluster: $(KIND) ## Create cluster - $(KIND) create cluster --name $(KIND_CLUSTER_NAME) --config contrib/kubernetes/kind/kind.config.yaml +create-kind-cluster: prereqs-kind ## Create cluster + kind create cluster --name $(KIND_CLUSTER_NAME) --config contrib/kubernetes/kind/kind.config.yaml kubectl cluster-info --context kind-kind .PHONY: delete-kind-cluster -delete-kind-cluster: $(KIND) ## Delete cluster - $(KIND) delete cluster --name $(KIND_CLUSTER_NAME) +delete-kind-cluster: prereqs-kind ## Delete cluster + kind delete cluster --name $(KIND_CLUSTER_NAME) .PHONY: kind-load-image kind-load-image: ## Load image to kind ifeq ($(OCI_BIN),$(shell which docker 2>/dev/null)) # This is an optimization for docker provider. "kind load docker-image" can load an image directly from docker's # local registry. For other providers (i.e. podman), we must use "kind load image-archive" instead. - $(KIND) load --name $(KIND_CLUSTER_NAME) docker-image $(IMAGE)-${GOARCH} + kind load --name $(KIND_CLUSTER_NAME) docker-image $(IMAGE)-${GOARCH} else $(eval tmpfile="/tmp/flp.tar") -rm $(tmpfile) $(OCI_BIN) save $(IMAGE)-$(GOARCH) -o $(tmpfile) - $(KIND) load --name $(KIND_CLUSTER_NAME) image-archive $(tmpfile) + kind load --name $(KIND_CLUSTER_NAME) image-archive $(tmpfile) -rm $(tmpfile) endif ##@ metrics .PHONY: generate-configuration -generate-configuration: $(KIND) ## Generate metrics configuration +generate-configuration: prereqs-kind ## Generate metrics configuration go build "${CMD_DIR}${CG_BIN_FILE}" ./${CG_BIN_FILE} --log-level debug --srcFolder network_definitions \ --destConfFile $(FLP_CONF_FILE) \ @@ -104,19 +104,19 @@ generate-configuration: $(KIND) ## Generate metrics configuration ##@ End2End .PHONY: local-deployments-deploy -local-deployments-deploy: $(KIND) deploy-prometheus deploy-loki deploy-grafana build-image kind-load-image deploy deploy-netflow-simulator +local-deployments-deploy: prereqs-kind deploy-prometheus deploy-loki deploy-grafana build-image kind-load-image deploy deploy-netflow-simulator kubectl get pods kubectl rollout status -w deployment/flowlogs-pipeline kubectl logs -l app=flowlogs-pipeline .PHONY: local-deploy -local-deploy: $(KIND) local-cleanup create-kind-cluster local-deployments-deploy ## Deploy locally on kind (with simulated flowlogs) +local-deploy: prereqs-kind local-cleanup create-kind-cluster local-deployments-deploy ## Deploy locally on kind (with simulated flowlogs) .PHONY: local-deployments-cleanup -local-deployments-cleanup: $(KIND) undeploy-netflow-simulator undeploy undeploy-grafana undeploy-loki undeploy-prometheus +local-deployments-cleanup: prereqs-kind undeploy-netflow-simulator undeploy undeploy-grafana undeploy-loki undeploy-prometheus .PHONY: local-cleanup -local-cleanup: $(KIND) local-deployments-cleanup delete-kind-cluster ## Undeploy from local kind +local-cleanup: prereqs-kind local-deployments-cleanup delete-kind-cluster ## Undeploy from local kind .PHONY: local-redeploy local-redeploy: local-deployments-cleanup local-deployments-deploy ## Redeploy locally (on current kind) diff --git a/Makefile b/Makefile index 31019e5c8..4fc41de81 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,6 @@ export GOBIN=$(CURDIR)/bin export PATH:=$(GOBIN):$(PATH) -include .bingo/Variables.mk - export GOROOT=$(shell go env GOROOT) export GOFLAGS=-mod=vendor export GO111MODULE=on @@ -40,6 +38,8 @@ ifneq ($(CLEAN_BUILD),) LDFLAGS ?= -X 'main.buildVersion=${VERSION}-${BUILD_SHA}' -X 'main.buildDate=${BUILD_DATE}' endif +GOLANGCI_LINT_VERSION = v1.56.2 + FLP_BIN_FILE=flowlogs-pipeline CG_BIN_FILE=confgenerator NETFLOW_GENERATOR=nflow-generator @@ -86,6 +86,16 @@ endef help: ## Display this help. @awk 'BEGIN {FS = ":.*##"; printf "\nUsage:\n make \033[36m\033[0m\n"} /^[a-zA-Z_0-9-]+:.*?##/ { printf " \033[36m%-20s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST) +.PHONY: prereqs +prereqs: ## Check if prerequisites are met, and install missing dependencies + @echo "### Checking if prerequisites are met, and installing missing dependencies" + GOFLAGS="" go install github.com/golangci/golangci-lint/cmd/golangci-lint@${GOLANGCI_LINT_VERSION} + +.PHONY: prereqs-kind +prereqs-kind: ## Check if prerequisites are met for running kind, and install missing dependencies + @echo "### Checking if KIND prerequisites are met, and installing missing dependencies" + test -f $(shell go env GOPATH)/bin/kind || GOFLAGS="" go install sigs.k8s.io/kind@latest + .PHONY: vendors vendors: ## Check go vendors @echo "### Checking vendors" @@ -94,8 +104,8 @@ vendors: ## Check go vendors ##@ Develop .PHONY: lint -lint: $(GOLANGCI_LINT) ## Lint the code - $(GOLANGCI_LINT) run ./... --timeout=3m +lint: prereqs ## Lint the code + golangci-lint run ./... --timeout=3m .PHONY: compile compile: ## Compile main flowlogs-pipeline and config generator @@ -140,7 +150,7 @@ tests-fast: TEST_OPTS= tests-fast: tests-unit ## Fast unit tests (no race tests / coverage) .PHONY: tests-e2e -tests-e2e: $(KIND) ## End-to-end tests +tests-e2e: prereqs-kind ## End-to-end tests go test -p 1 -v -timeout 20m $$(go list ./... | grep /e2e) .PHONY: tests-all diff --git a/go.mod b/go.mod index fae2f19c8..8dd863159 100644 --- a/go.mod +++ b/go.mod @@ -2,8 +2,6 @@ module github.com/netobserv/flowlogs-pipeline go 1.22.3 -toolchain go1.22.5 - require ( github.com/Knetic/govaluate v3.0.1-0.20171022003610-9aa49832a739+incompatible github.com/agoda-com/opentelemetry-logs-go v0.5.0