|
1 | 1 | module github.com/mittwald/kubernetes-secret-generator
|
2 | 2 |
|
3 |
| -go 1.16 |
| 3 | +go 1.23 |
4 | 4 |
|
5 | 5 | require (
|
6 | 6 | github.com/go-logr/logr v0.1.0
|
7 |
| - github.com/google/uuid v1.1.1 |
| 7 | + github.com/google/uuid v1.3.0 |
8 | 8 | github.com/imdario/mergo v0.3.8
|
9 | 9 | github.com/operator-framework/operator-sdk v0.16.0
|
10 |
| - github.com/pkg/errors v0.8.1 |
| 10 | + github.com/pkg/errors v0.9.1 |
11 | 11 | github.com/spf13/pflag v1.0.5
|
12 | 12 | github.com/spf13/viper v1.4.0
|
13 |
| - github.com/stretchr/testify v1.4.0 |
14 |
| - golang.org/x/crypto v0.0.0-20191028145041-f83a4685e152 |
| 13 | + github.com/stretchr/testify v1.9.0 |
| 14 | + golang.org/x/crypto v0.24.0 |
15 | 15 | k8s.io/api v0.0.0
|
16 | 16 | k8s.io/apimachinery v0.0.0
|
17 | 17 | k8s.io/client-go v12.0.0+incompatible
|
18 | 18 | sigs.k8s.io/controller-runtime v0.4.0
|
19 | 19 | )
|
20 | 20 |
|
| 21 | +require ( |
| 22 | + cloud.google.com/go v0.38.0 // indirect |
| 23 | + github.com/Azure/go-autorest/autorest v0.9.0 // indirect |
| 24 | + github.com/Azure/go-autorest/autorest/adal v0.5.0 // indirect |
| 25 | + github.com/Azure/go-autorest/autorest/date v0.1.0 // indirect |
| 26 | + github.com/Azure/go-autorest/logger v0.1.0 // indirect |
| 27 | + github.com/Azure/go-autorest/tracing v0.5.0 // indirect |
| 28 | + github.com/PuerkitoBio/purell v1.1.1 // indirect |
| 29 | + github.com/PuerkitoBio/urlesc v0.0.0-20170810143723-de5bf2ad4578 // indirect |
| 30 | + github.com/beorn7/perks v1.0.1 // indirect |
| 31 | + github.com/cespare/xxhash/v2 v2.3.0 // indirect |
| 32 | + github.com/coreos/prometheus-operator v0.34.0 // indirect |
| 33 | + github.com/davecgh/go-spew v1.1.1 // indirect |
| 34 | + github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect |
| 35 | + github.com/emicklei/go-restful v2.16.0+incompatible // indirect |
| 36 | + github.com/evanphx/json-patch v4.5.0+incompatible // indirect |
| 37 | + github.com/fsnotify/fsnotify v1.4.7 // indirect |
| 38 | + github.com/go-logr/zapr v0.1.1 // indirect |
| 39 | + github.com/go-openapi/jsonpointer v0.19.3 // indirect |
| 40 | + github.com/go-openapi/jsonreference v0.19.3 // indirect |
| 41 | + github.com/go-openapi/spec v0.19.4 // indirect |
| 42 | + github.com/go-openapi/swag v0.19.5 // indirect |
| 43 | + github.com/gogo/protobuf v1.3.2 // indirect |
| 44 | + github.com/golang/groupcache v0.0.0-20191027212112-611e8accdfc9 // indirect |
| 45 | + github.com/golang/protobuf v1.5.0 // indirect |
| 46 | + github.com/google/go-cmp v0.6.0 // indirect |
| 47 | + github.com/google/gofuzz v1.0.0 // indirect |
| 48 | + github.com/googleapis/gnostic v0.3.1 // indirect |
| 49 | + github.com/gophercloud/gophercloud v0.2.0 // indirect |
| 50 | + github.com/hashicorp/golang-lru v0.5.3 // indirect |
| 51 | + github.com/hashicorp/hcl v1.0.0 // indirect |
| 52 | + github.com/json-iterator/go v1.1.12 // indirect |
| 53 | + github.com/klauspost/compress v1.17.9 // indirect |
| 54 | + github.com/magiconair/properties v1.8.1 // indirect |
| 55 | + github.com/mailru/easyjson v0.7.0 // indirect |
| 56 | + github.com/mitchellh/mapstructure v1.1.2 // indirect |
| 57 | + github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect |
| 58 | + github.com/modern-go/reflect2 v1.0.2 // indirect |
| 59 | + github.com/munnerz/goautoneg v0.0.0-20191010083416-a7dc8b61c822 // indirect |
| 60 | + github.com/pelletier/go-toml v1.2.0 // indirect |
| 61 | + github.com/pmezard/go-difflib v1.0.0 // indirect |
| 62 | + github.com/prometheus/client_golang v1.20.3 // indirect |
| 63 | + github.com/prometheus/client_model v0.6.1 // indirect |
| 64 | + github.com/prometheus/common v0.55.0 // indirect |
| 65 | + github.com/prometheus/procfs v0.15.1 // indirect |
| 66 | + github.com/spf13/afero v1.2.2 // indirect |
| 67 | + github.com/spf13/cast v1.3.0 // indirect |
| 68 | + github.com/spf13/jwalterweatherman v1.1.0 // indirect |
| 69 | + go.uber.org/atomic v1.4.0 // indirect |
| 70 | + go.uber.org/multierr v1.1.0 // indirect |
| 71 | + go.uber.org/zap v1.10.0 // indirect |
| 72 | + golang.org/x/net v0.26.0 // indirect |
| 73 | + golang.org/x/oauth2 v0.21.0 // indirect |
| 74 | + golang.org/x/sys v0.22.0 // indirect |
| 75 | + golang.org/x/term v0.21.0 // indirect |
| 76 | + golang.org/x/text v0.18.0 // indirect |
| 77 | + golang.org/x/time v0.0.0-20191024005414-555d28b269f0 // indirect |
| 78 | + golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect |
| 79 | + gomodules.xyz/jsonpatch/v2 v2.0.1 // indirect |
| 80 | + google.golang.org/protobuf v1.34.2 // indirect |
| 81 | + gopkg.in/fsnotify.v1 v1.4.7 // indirect |
| 82 | + gopkg.in/inf.v0 v0.9.1 // indirect |
| 83 | + gopkg.in/yaml.v2 v2.4.0 // indirect |
| 84 | + gopkg.in/yaml.v3 v3.0.1 // indirect |
| 85 | + k8s.io/klog v1.0.0 // indirect |
| 86 | + k8s.io/kube-openapi v0.0.0-20190918143330-0270cf2f1c1d // indirect |
| 87 | + k8s.io/kube-state-metrics v1.7.2 // indirect |
| 88 | + k8s.io/utils v0.0.0-20191010214722-8d271d903fe4 // indirect |
| 89 | + sigs.k8s.io/yaml v1.1.0 // indirect |
| 90 | +) |
| 91 | + |
21 | 92 | // Pinned to kubernetes-1.16.2
|
22 | 93 | replace (
|
23 | 94 | k8s.io/api => k8s.io/api v0.0.0-20191016110408-35e52d86657a
|
|
0 commit comments