2020-11-23 14:21:01 +00:00
|
|
|
module github.com/external-secrets/external-secrets
|
|
|
|
|
2021-12-27 03:21:10 +00:00
|
|
|
go 1.17
|
2020-11-23 14:21:01 +00:00
|
|
|
|
2021-02-24 19:01:28 +00:00
|
|
|
replace (
|
2021-07-29 15:32:11 +00:00
|
|
|
github.com/external-secrets/external-secrets/apis/externalsecrets/v1alpha1 => ./apis/externalsecrets/v1alpha1
|
2021-08-24 11:42:44 +00:00
|
|
|
github.com/external-secrets/external-secrets/pkg/provider/gitlab => ./pkg/provider/gitlab
|
2021-03-01 10:13:03 +00:00
|
|
|
google.golang.org/grpc => google.golang.org/grpc v1.27.0
|
2021-06-25 23:56:42 +00:00
|
|
|
k8s.io/api => k8s.io/api v0.21.2
|
|
|
|
k8s.io/apiextensions-apiserver => k8s.io/apiextensions-apiserver v0.21.2
|
|
|
|
k8s.io/apimachinery => k8s.io/apimachinery v0.21.2
|
|
|
|
k8s.io/apiserver => k8s.io/apiserver v0.21.2
|
|
|
|
k8s.io/cli-runtime => k8s.io/cli-runtime v0.21.2
|
|
|
|
k8s.io/client-go => k8s.io/client-go v0.21.2
|
|
|
|
k8s.io/cloud-provider => k8s.io/cloud-provider v0.21.2
|
|
|
|
k8s.io/cluster-bootstrap => k8s.io/cluster-bootstrap v0.21.2
|
|
|
|
k8s.io/code-generator => k8s.io/code-generator v0.21.2
|
|
|
|
k8s.io/component-base => k8s.io/component-base v0.21.2
|
|
|
|
k8s.io/component-helpers => k8s.io/component-helpers v0.21.2
|
|
|
|
k8s.io/controller-manager => k8s.io/controller-manager v0.21.2
|
|
|
|
k8s.io/cri-api => k8s.io/cri-api v0.21.2
|
|
|
|
k8s.io/csi-translation-lib => k8s.io/csi-translation-lib v0.21.2
|
|
|
|
k8s.io/kube-aggregator => k8s.io/kube-aggregator v0.21.2
|
|
|
|
k8s.io/kube-controller-manager => k8s.io/kube-controller-manager v0.21.2
|
|
|
|
k8s.io/kube-proxy => k8s.io/kube-proxy v0.21.2
|
|
|
|
k8s.io/kube-scheduler => k8s.io/kube-scheduler v0.21.2
|
|
|
|
k8s.io/kubectl => k8s.io/kubectl v0.21.2
|
|
|
|
k8s.io/kubelet => k8s.io/kubelet v0.21.2
|
|
|
|
k8s.io/legacy-cloud-providers => k8s.io/legacy-cloud-providers v0.21.2
|
|
|
|
k8s.io/metrics => k8s.io/metrics v0.21.2
|
|
|
|
k8s.io/mount-utils => k8s.io/mount-utils v0.21.2
|
|
|
|
k8s.io/sample-apiserver => k8s.io/sample-apiserver v0.21.2
|
2021-02-24 19:01:28 +00:00
|
|
|
)
|
|
|
|
|
2020-11-23 14:21:01 +00:00
|
|
|
require (
|
2021-11-07 14:18:40 +00:00
|
|
|
cloud.google.com/go v0.81.0
|
2021-05-11 12:26:43 +00:00
|
|
|
github.com/Azure/azure-sdk-for-go v54.1.0+incompatible
|
2021-05-20 16:09:13 +00:00
|
|
|
github.com/Azure/go-autorest/autorest/azure/auth v0.5.7
|
2021-07-21 22:07:25 +00:00
|
|
|
github.com/IBM/go-sdk-core/v5 v5.5.0
|
|
|
|
github.com/IBM/secrets-manager-go-sdk v1.0.23
|
2021-11-07 14:18:40 +00:00
|
|
|
github.com/akeylesslabs/akeyless-go-cloud-id v0.3.2
|
|
|
|
github.com/akeylesslabs/akeyless-go/v2 v2.5.11
|
2021-08-06 16:17:29 +00:00
|
|
|
github.com/aliyun/alibaba-cloud-sdk-go v1.61.1192
|
2021-03-26 04:14:41 +00:00
|
|
|
github.com/aws/aws-sdk-go v1.38.6
|
2021-03-01 10:13:03 +00:00
|
|
|
github.com/crossplane/crossplane-runtime v0.13.0
|
2021-02-06 12:16:36 +00:00
|
|
|
github.com/go-logr/logr v0.4.0
|
2021-12-13 12:07:42 +00:00
|
|
|
github.com/golang-jwt/jwt/v4 v4.2.0
|
2021-06-25 23:56:42 +00:00
|
|
|
github.com/google/go-cmp v0.5.5
|
2021-05-11 12:26:43 +00:00
|
|
|
github.com/google/uuid v1.2.0
|
2021-05-20 16:09:13 +00:00
|
|
|
github.com/googleapis/gax-go v1.0.3
|
2021-03-01 10:13:03 +00:00
|
|
|
github.com/hashicorp/vault/api v1.0.5-0.20210224012239-b540be4b7ec4
|
2021-06-23 06:57:22 +00:00
|
|
|
github.com/lestrrat-go/jwx v1.2.1
|
2021-11-06 20:12:13 +00:00
|
|
|
github.com/onsi/ginkgo v1.16.5
|
2021-08-30 19:16:20 +00:00
|
|
|
github.com/onsi/gomega v1.16.0
|
2021-08-18 12:46:24 +00:00
|
|
|
github.com/oracle/oci-go-sdk/v45 v45.2.0
|
2021-06-25 23:56:42 +00:00
|
|
|
github.com/prometheus/client_golang v1.11.0
|
2021-04-12 15:07:43 +00:00
|
|
|
github.com/prometheus/client_model v0.2.0
|
2021-05-11 12:26:43 +00:00
|
|
|
github.com/stretchr/testify v1.7.0
|
2021-12-13 12:07:42 +00:00
|
|
|
github.com/tidwall/gjson v1.12.1
|
2021-08-25 14:48:50 +00:00
|
|
|
github.com/xanzy/go-gitlab v0.50.1
|
2021-08-12 17:05:02 +00:00
|
|
|
github.com/yandex-cloud/go-genproto v0.0.0-20210809082946-a97da516c588
|
|
|
|
github.com/yandex-cloud/go-sdk v0.0.0-20210809100642-c13c40a429fa
|
2021-04-23 06:22:23 +00:00
|
|
|
github.com/youmark/pkcs8 v0.0.0-20201027041543-1326539a0a0a
|
2021-07-07 19:18:14 +00:00
|
|
|
go.uber.org/zap v1.17.0
|
2021-05-20 16:09:13 +00:00
|
|
|
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
|
2021-11-07 14:18:40 +00:00
|
|
|
golang.org/x/oauth2 v0.0.0-20210413134643-5e61552d6c78
|
|
|
|
google.golang.org/api v0.45.0
|
|
|
|
google.golang.org/genproto v0.0.0-20210413151531-c14fb6ef47c3
|
2021-12-17 00:25:54 +00:00
|
|
|
google.golang.org/grpc v1.43.0
|
|
|
|
grpc.go4.org v0.0.0-20170609214715-11d0a25b4919
|
2021-08-06 16:17:29 +00:00
|
|
|
k8s.io/api v0.21.3
|
|
|
|
k8s.io/apimachinery v0.21.3
|
2021-06-25 23:56:42 +00:00
|
|
|
k8s.io/client-go v0.21.2
|
2021-06-29 09:29:24 +00:00
|
|
|
k8s.io/utils v0.0.0-20210527160623-6fdb442a123b
|
2021-08-06 16:17:29 +00:00
|
|
|
sigs.k8s.io/controller-runtime v0.9.3
|
2021-04-14 20:39:39 +00:00
|
|
|
sigs.k8s.io/controller-tools v0.5.0
|
2021-07-29 10:43:57 +00:00
|
|
|
software.sslmate.com/src/go-pkcs12 v0.0.0-20210415151418-c5206de65a78
|
2020-11-23 14:21:01 +00:00
|
|
|
)
|
2021-12-27 03:21:10 +00:00
|
|
|
|
|
|
|
require (
|
|
|
|
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest v0.11.17 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.11 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/azure/cli v0.4.2 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect
|
|
|
|
github.com/Azure/go-autorest/logger v0.2.0 // indirect
|
|
|
|
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
|
|
|
|
github.com/BurntSushi/toml v0.3.1 // indirect
|
|
|
|
github.com/asaskevich/govalidator v0.0.0-20200907205600-7a23bdc65eef // indirect
|
|
|
|
github.com/aws/aws-sdk-go-v2 v0.23.0 // indirect
|
|
|
|
github.com/beorn7/perks v1.0.1 // indirect
|
|
|
|
github.com/cespare/xxhash/v2 v2.1.1 // indirect
|
|
|
|
github.com/davecgh/go-spew v1.1.1 // indirect
|
|
|
|
github.com/decred/dcrd/dcrec/secp256k1/v3 v3.0.0 // indirect
|
|
|
|
github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
|
|
|
|
github.com/dimchansky/utfbom v1.1.1 // indirect
|
|
|
|
github.com/evanphx/json-patch v4.11.0+incompatible // indirect
|
|
|
|
github.com/fatih/color v1.10.0 // indirect
|
|
|
|
github.com/form3tech-oss/jwt-go v3.2.2+incompatible // indirect
|
|
|
|
github.com/frankban/quicktest v1.10.0 // indirect
|
|
|
|
github.com/fsnotify/fsnotify v1.5.1 // indirect
|
|
|
|
github.com/ghodss/yaml v1.0.0 // indirect
|
|
|
|
github.com/go-logr/zapr v0.4.0 // indirect
|
|
|
|
github.com/go-openapi/errors v0.19.8 // indirect
|
|
|
|
github.com/go-openapi/strfmt v0.20.1 // indirect
|
|
|
|
github.com/go-playground/locales v0.13.0 // indirect
|
|
|
|
github.com/go-playground/universal-translator v0.17.0 // indirect
|
|
|
|
github.com/go-stack/stack v1.8.0 // indirect
|
|
|
|
github.com/go-task/slim-sprig v0.0.0-20210107165309-348f09dbbbc0 // indirect
|
|
|
|
github.com/gobuffalo/flect v0.2.2 // indirect
|
|
|
|
github.com/goccy/go-json v0.4.8 // indirect
|
|
|
|
github.com/gogo/protobuf v1.3.2 // indirect
|
|
|
|
github.com/golang/groupcache v0.0.0-20200121045136-8c9f03a8e57e // indirect
|
|
|
|
github.com/golang/protobuf v1.5.2 // indirect
|
|
|
|
github.com/golang/snappy v0.0.1 // indirect
|
|
|
|
github.com/google/go-querystring v1.0.0 // indirect
|
|
|
|
github.com/google/gofuzz v1.2.0 // indirect
|
|
|
|
github.com/googleapis/gax-go/v2 v2.0.5 // indirect
|
|
|
|
github.com/googleapis/gnostic v0.5.5 // indirect
|
|
|
|
github.com/hashicorp/errwrap v1.0.0 // indirect
|
|
|
|
github.com/hashicorp/go-cleanhttp v0.5.1 // indirect
|
|
|
|
github.com/hashicorp/go-hclog v0.14.1 // indirect
|
|
|
|
github.com/hashicorp/go-multierror v1.1.1 // indirect
|
|
|
|
github.com/hashicorp/go-retryablehttp v0.6.8 // indirect
|
|
|
|
github.com/hashicorp/go-rootcerts v1.0.2 // indirect
|
|
|
|
github.com/hashicorp/go-sockaddr v1.0.2 // indirect
|
|
|
|
github.com/hashicorp/golang-lru v0.5.4 // indirect
|
|
|
|
github.com/hashicorp/hcl v1.0.1-vault // indirect
|
|
|
|
github.com/hashicorp/vault/sdk v0.1.14-0.20200519221838-e0cfd64bc267 // indirect
|
|
|
|
github.com/imdario/mergo v0.3.12 // indirect
|
|
|
|
github.com/inconshreveable/mousetrap v1.0.0 // indirect
|
|
|
|
github.com/jmespath/go-jmespath v0.4.0 // indirect
|
|
|
|
github.com/json-iterator/go v1.1.11 // indirect
|
|
|
|
github.com/kr/pretty v0.2.1 // indirect
|
|
|
|
github.com/leodido/go-urn v1.2.0 // indirect
|
|
|
|
github.com/lestrrat-go/backoff/v2 v2.0.7 // indirect
|
|
|
|
github.com/lestrrat-go/blackmagic v1.0.0 // indirect
|
|
|
|
github.com/lestrrat-go/httpcc v1.0.0 // indirect
|
|
|
|
github.com/lestrrat-go/iter v1.0.1 // indirect
|
|
|
|
github.com/lestrrat-go/option v1.0.0 // indirect
|
|
|
|
github.com/mattn/go-colorable v0.1.8 // indirect
|
|
|
|
github.com/mattn/go-isatty v0.0.12 // indirect
|
|
|
|
github.com/matttproud/golang_protobuf_extensions v1.0.2-0.20181231171920-c182affec369 // indirect
|
|
|
|
github.com/mitchellh/go-homedir v1.1.0 // indirect
|
|
|
|
github.com/mitchellh/mapstructure v1.3.3 // indirect
|
|
|
|
github.com/moby/spdystream v0.2.0 // indirect
|
|
|
|
github.com/modern-go/concurrent v0.0.0-20180306012644-bacd9c7ef1dd // indirect
|
|
|
|
github.com/modern-go/reflect2 v1.0.1 // indirect
|
|
|
|
github.com/nxadm/tail v1.4.8 // indirect
|
|
|
|
github.com/oklog/ulid v1.3.1 // indirect
|
|
|
|
github.com/pierrec/lz4 v2.5.2+incompatible // indirect
|
|
|
|
github.com/pkg/errors v0.9.1 // indirect
|
|
|
|
github.com/pmezard/go-difflib v1.0.0 // indirect
|
|
|
|
github.com/prometheus/common v0.26.0 // indirect
|
|
|
|
github.com/prometheus/procfs v0.6.0 // indirect
|
|
|
|
github.com/ryanuber/go-glob v1.0.0 // indirect
|
|
|
|
github.com/spf13/cobra v1.1.3 // indirect
|
|
|
|
github.com/spf13/pflag v1.0.5 // indirect
|
|
|
|
github.com/stretchr/objx v0.2.0 // indirect
|
|
|
|
github.com/tidwall/match v1.1.1 // indirect
|
|
|
|
github.com/tidwall/pretty v1.2.0 // indirect
|
|
|
|
go.mongodb.org/mongo-driver v1.5.1 // indirect
|
|
|
|
go.opencensus.io v0.23.0 // indirect
|
|
|
|
go.uber.org/atomic v1.7.0 // indirect
|
|
|
|
go.uber.org/multierr v1.6.0 // indirect
|
|
|
|
golang.org/x/exp v0.0.0-20200331195152-e8c3332aa8e5 // indirect
|
|
|
|
golang.org/x/lint v0.0.0-20201208152925-83fdc39ff7b5 // indirect
|
|
|
|
golang.org/x/mod v0.4.2 // indirect
|
|
|
|
golang.org/x/net v0.0.0-20210805182204-aaa1db679c0d // indirect
|
|
|
|
golang.org/x/sys v0.0.0-20211102061401-a2f17f7b995c // indirect
|
|
|
|
golang.org/x/term v0.0.0-20210220032956-6a3ed077a48d // indirect
|
|
|
|
golang.org/x/text v0.3.6 // indirect
|
|
|
|
golang.org/x/time v0.0.0-20210611083556-38a9dc6acbc6 // indirect
|
|
|
|
golang.org/x/tools v0.1.7 // indirect
|
|
|
|
golang.org/x/xerrors v0.0.0-20200804184101-5ec99f83aff1 // indirect
|
|
|
|
gomodules.xyz/jsonpatch/v2 v2.2.0 // indirect
|
|
|
|
google.golang.org/appengine v1.6.7 // indirect
|
|
|
|
google.golang.org/protobuf v1.26.0 // indirect
|
|
|
|
gopkg.in/go-playground/validator.v9 v9.31.0 // indirect
|
|
|
|
gopkg.in/inf.v0 v0.9.1 // indirect
|
|
|
|
gopkg.in/ini.v1 v1.51.0 // indirect
|
|
|
|
gopkg.in/square/go-jose.v2 v2.5.1 // indirect
|
|
|
|
gopkg.in/tomb.v1 v1.0.0-20141024135613-dd632973f1e7 // indirect
|
|
|
|
gopkg.in/yaml.v2 v2.4.0 // indirect
|
|
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b // indirect
|
|
|
|
honnef.co/go/tools v0.1.4 // indirect
|
|
|
|
k8s.io/apiextensions-apiserver v0.21.2 // indirect
|
|
|
|
k8s.io/component-base v0.21.2 // indirect
|
|
|
|
k8s.io/klog/v2 v2.8.0 // indirect
|
|
|
|
k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7 // indirect
|
|
|
|
sigs.k8s.io/structured-merge-diff/v4 v4.1.0 // indirect
|
|
|
|
sigs.k8s.io/yaml v1.2.0 // indirect
|
|
|
|
)
|