|
1 | 1 | module github.com/stakater/IngressMonitorController |
2 | 2 |
|
3 | | -go 1.15 |
| 3 | +go 1.18 |
4 | 4 |
|
5 | 5 | require ( |
6 | 6 | cloud.google.com/go v0.54.0 |
7 | 7 | github.com/Azure/azure-sdk-for-go v44.0.0+incompatible |
8 | 8 | github.com/Azure/go-autorest/autorest/azure/auth v0.5.0 |
9 | | - github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect |
10 | | - github.com/Azure/go-autorest/autorest/validation v0.3.0 // indirect |
11 | 9 | github.com/antoineaugusti/updown v0.0.0-20190412074625-d590ab97f115 |
12 | 10 | github.com/go-logr/logr v0.3.0 |
13 | 11 | github.com/kelseyhightower/envconfig v1.4.0 |
14 | | - github.com/onsi/ginkgo v1.15.0 // indirect |
15 | | - github.com/onsi/gomega v1.10.5 // indirect |
16 | 12 | github.com/openshift/api v0.0.0-20200526144822-34f54f12813a |
17 | 13 | github.com/patrickmn/go-cache v2.1.0+incompatible |
18 | 14 | github.com/russellcardullo/go-pingdom v1.3.0 |
19 | 15 | github.com/stakater/operator-utils v0.1.13 |
20 | 16 | github.com/stretchr/testify v1.6.1 |
21 | | - golang.org/x/crypto v0.0.0-20201012173705-84dcc777aaee // indirect |
22 | | - golang.org/x/mod v0.4.2 // indirect |
23 | | - golang.org/x/tools v0.1.0 // indirect |
24 | 17 | google.golang.org/api v0.20.0 |
25 | 18 | google.golang.org/genproto v0.0.0-20201110150050-8816d57aaa9a |
26 | | - google.golang.org/grpc v1.30.0 // indirect |
27 | 19 | gopkg.in/yaml.v2 v2.3.0 |
28 | 20 | gotest.tools v2.2.0+incompatible |
29 | 21 | k8s.io/api v0.20.2 |
30 | | - k8s.io/apiextensions-apiserver v0.20.2 // indirect |
31 | 22 | k8s.io/apimachinery v0.20.2 |
32 | 23 | k8s.io/client-go v0.20.2 |
33 | 24 | sigs.k8s.io/controller-runtime v0.8.3 |
34 | 25 | ) |
35 | 26 |
|
| 27 | +require ( |
| 28 | + github.com/Azure/go-autorest v14.2.0+incompatible // indirect |
| 29 | + github.com/Azure/go-autorest/autorest v0.11.1 // indirect |
| 30 | + github.com/Azure/go-autorest/autorest/adal v0.9.5 // indirect |
| 31 | + github.com/Azure/go-autorest/autorest/azure/cli v0.4.0 // indirect |
| 32 | + github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect |
| 33 | + github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect |
| 34 | + github.com/Azure/go-autorest/autorest/validation v0.3.0 // indirect |
| 35 | + github.com/Azure/go-autorest/logger v0.2.0 // indirect |
| 36 | + github.com/Azure/go-autorest/tracing v0.6.0 // indirect |
| 37 | + github.com/beorn7/perks v1.0.1 // indirect |
| 38 | + github.com/cespare/xxhash/v2 v2.1.1 // indirect |
| 39 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 40 | + github.com/dimchansky/utfbom v1.1.0 // indirect |
| 41 | + github.com/evanphx/json-patch v4.9.0+incompatible // indirect |
| 42 | + github.com/form3tech-oss/jwt-go v3.2.2+incompatible // indirect |
| 43 | + github.com/fsnotify/fsnotify v1.4.9 // indirect |
| 44 | + github.com/go-logr/zapr v0.2.0 // indirect |
| 45 | + github.com/gogo/protobuf v1.3.1 // indirect |
| 46 | + github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect |
| 47 | + github.com/golang/protobuf v1.4.3 // indirect |
| 48 | + github.com/google/go-cmp v0.5.5 // indirect |
| 49 | + github.com/google/gofuzz v1.1.0 // indirect |
| 50 | + github.com/google/uuid v1.1.2 // indirect |
| 51 | + github.com/googleapis/gax-go/v2 v2.0.5 // indirect |
| 52 | + github.com/googleapis/gnostic v0.5.1 // indirect |
| 53 | + github.com/hashicorp/golang-lru v0.5.4 // indirect |
| 54 | + github.com/imdario/mergo v0.3.10 // indirect |
| 55 | + github.com/json-iterator/go v1.1.10 // indirect |
| 56 | + github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect |
| 57 | + github.com/mitchellh/go-homedir v1.1.0 // indirect |
| 58 | + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 59 | + github.com/modern-go/reflect2 v1.0.1 // indirect |
| 60 | + github.com/onsi/ginkgo v1.15.0 // indirect |
| 61 | + github.com/onsi/gomega v1.10.5 // indirect |
| 62 | + github.com/pkg/errors v0.9.1 // indirect |
| 63 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 64 | + github.com/prometheus/client_golang v1.7.1 // indirect |
| 65 | + github.com/prometheus/client_model v0.2.0 // indirect |
| 66 | + github.com/prometheus/common v0.10.0 // indirect |
| 67 | + github.com/prometheus/procfs v0.2.0 // indirect |
| 68 | + github.com/spf13/pflag v1.0.5 // indirect |
| 69 | + go.opencensus.io v0.22.3 // indirect |
| 70 | + go.uber.org/atomic v1.6.0 // indirect |
| 71 | + go.uber.org/multierr v1.5.0 // indirect |
| 72 | + go.uber.org/zap v1.15.0 // indirect |
| 73 | + golang.org/x/crypto v0.0.0-20201012173705-84dcc777aaee // indirect |
| 74 | + golang.org/x/mod v0.4.2 // indirect |
| 75 | + golang.org/x/net v0.0.0-20201202161906-c7110b5ffcbb // indirect |
| 76 | + golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d // indirect |
| 77 | + golang.org/x/sys v0.0.0-20210119212857-b64e53b001e4 // indirect |
| 78 | + golang.org/x/text v0.3.4 // indirect |
| 79 | + golang.org/x/time v0.0.0-20200630173020-3af7569d3a1e // indirect |
| 80 | + golang.org/x/tools v0.1.0 // indirect |
| 81 | + gomodules.xyz/jsonpatch/v2 v2.1.0 // indirect |
| 82 | + google.golang.org/appengine v1.6.6 // indirect |
| 83 | + google.golang.org/grpc v1.30.0 // indirect |
| 84 | + google.golang.org/protobuf v1.25.0 // indirect |
| 85 | + gopkg.in/inf.v0 v0.9.1 // indirect |
| 86 | + gopkg.in/yaml.v3 v3.0.0-20200615113413-eeeca48fe776 // indirect |
| 87 | + k8s.io/apiextensions-apiserver v0.20.2 // indirect |
| 88 | + k8s.io/component-base v0.20.2 // indirect |
| 89 | + k8s.io/klog/v2 v2.4.0 // indirect |
| 90 | + k8s.io/kube-openapi v0.0.0-20201113171705-d219536bb9fd // indirect |
| 91 | + k8s.io/utils v0.0.0-20210111153108-fddb29f9d009 // indirect |
| 92 | + sigs.k8s.io/structured-merge-diff/v4 v4.0.2 // indirect |
| 93 | + sigs.k8s.io/yaml v1.2.0 // indirect |
| 94 | +) |
| 95 | + |
36 | 96 | replace github.com/stakater/IngressMonitorController => ./github.com/stakater/IngressMonitorController |
37 | 97 |
|
38 | 98 | // replace k8s.io/client-go => k8s.io/client-go v0.18.2 |
0 commit comments