-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test available app ports for services
- Loading branch information
Showing
4 changed files
with
41 additions
and
48 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,41 +1,52 @@ | ||
module github.com/Financial-Times/upp-aggregate-healthcheck | ||
|
||
go 1.15 | ||
go 1.17 | ||
|
||
require ( | ||
github.com/Financial-Times/go-fthealth v0.0.0-20171204124831-1b007e2b37b7 | ||
github.com/Financial-Times/go-logger v0.0.0-20180323124113-febee6537e90 | ||
github.com/gorilla/mux v1.6.2 | ||
github.com/jawher/mow.cli v1.0.4 | ||
github.com/prometheus/client_golang v0.9.0-pre1.0.20180907102542-7858729281ec | ||
github.com/stretchr/testify v1.2.2 | ||
k8s.io/api v0.0.0-20180628040859-072894a440bd | ||
k8s.io/apimachinery v0.0.0-20180621070125-103fd098999d | ||
k8s.io/client-go v8.0.0+incompatible | ||
) | ||
|
||
require ( | ||
github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/ghodss/yaml v1.0.0 // indirect | ||
github.com/gogo/protobuf v1.1.1 // indirect | ||
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect | ||
github.com/golang/protobuf v1.2.0 // indirect | ||
github.com/google/btree v1.0.0 // 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/mux v1.6.2 | ||
github.com/gregjones/httpcache v0.0.0-20180305231024-9cad4c3443a7 // indirect | ||
github.com/jawher/mow.cli v1.0.4 | ||
github.com/json-iterator/go v1.1.5 // indirect | ||
github.com/konsorten/go-windows-terminal-sequences v1.0.1 // 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/onsi/ginkgo v1.11.0 // indirect | ||
github.com/onsi/gomega v1.8.1 // indirect | ||
github.com/peterbourgon/diskv v2.0.1+incompatible // indirect | ||
github.com/prometheus/client_golang v0.9.0-pre1.0.20180907102542-7858729281ec | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/client_model v0.0.0-20180712105110-5c3871d89910 // indirect | ||
github.com/prometheus/common v0.0.0-20180801064454-c7de2306084e // indirect | ||
github.com/prometheus/procfs v0.0.0-20180725123919-05ee40e3a273 // indirect | ||
github.com/sirupsen/logrus v1.2.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
github.com/stretchr/testify v1.2.2 | ||
golang.org/x/crypto v0.0.0-20180910181607-0e37d006457b // indirect | ||
golang.org/x/net v0.0.0-20180906233101-161cd47e91fd // indirect | ||
golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e // indirect | ||
golang.org/x/sys v0.0.0-20180909124046-d0be0721c37e // indirect | ||
golang.org/x/text v0.3.0 // indirect | ||
golang.org/x/time v0.0.0-20180412165947-fbb02b2291d2 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
k8s.io/api v0.0.0-20180628040859-072894a440bd | ||
k8s.io/apimachinery v0.0.0-20180621070125-103fd098999d | ||
k8s.io/client-go v8.0.0+incompatible | ||
gopkg.in/yaml.v2 v2.2.4 // indirect | ||
k8s.io/kube-openapi v0.0.0-20180620173706-91cfa479c814 // 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