87 lines
3.5 KiB
Modula-2
87 lines
3.5 KiB
Modula-2
module github.com/jetstack/cert-manager
|
|
|
|
go 1.16
|
|
|
|
// This fork allows us to add alternative certificate chains for ACME see
|
|
// https://github.com/cert-manager/crypto#cert-manager-fork-of-golangxcrypto .
|
|
// It will be replaced after
|
|
// https://go-review.googlesource.com/c/crypto/+/277294/ gets merged.
|
|
replace golang.org/x/crypto => github.com/cert-manager/crypto v0.0.0-20210409161129-d4c19753215a
|
|
|
|
require (
|
|
github.com/Azure/azure-sdk-for-go v43.0.0+incompatible
|
|
github.com/Azure/go-autorest/autorest v0.11.12
|
|
github.com/Azure/go-autorest/autorest/adal v0.9.5
|
|
github.com/Azure/go-autorest/autorest/to v0.2.0
|
|
github.com/Azure/go-autorest/autorest/validation v0.1.0 // indirect
|
|
github.com/Venafi/vcert/v4 v4.13.1
|
|
github.com/akamai/AkamaiOPEN-edgegrid-golang v1.1.0
|
|
github.com/aws/aws-sdk-go v1.34.30
|
|
github.com/cloudflare/cloudflare-go v0.13.2
|
|
github.com/cpu/goacmedns v0.0.3
|
|
github.com/digitalocean/godo v1.44.0
|
|
github.com/go-logr/logr v0.4.0
|
|
github.com/google/gofuzz v1.2.0
|
|
github.com/googleapis/gnostic v0.5.4
|
|
github.com/hashicorp/vault/api v1.0.4
|
|
github.com/hashicorp/vault/sdk v0.1.13
|
|
github.com/kr/pretty v0.2.1
|
|
github.com/miekg/dns v1.1.31
|
|
github.com/mitchellh/go-homedir v1.1.0
|
|
github.com/munnerz/crd-schema-fuzz v1.0.0
|
|
github.com/onsi/ginkgo v1.16.1
|
|
github.com/onsi/gomega v1.11.0
|
|
github.com/pavel-v-chernykh/keystore-go v2.1.0+incompatible
|
|
github.com/pkg/errors v0.9.1
|
|
github.com/prometheus/client_golang v1.9.0
|
|
github.com/sergi/go-diff v1.1.0
|
|
github.com/smartystreets/assertions v1.2.0 // indirect
|
|
github.com/spf13/cobra v1.1.3
|
|
github.com/spf13/pflag v1.0.5
|
|
github.com/stretchr/testify v1.6.1
|
|
golang.org/x/crypto v0.0.0-20210220033148-5ea612d1eb83
|
|
golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4
|
|
golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d
|
|
golang.org/x/sync v0.0.0-20210220032951-036812b2e83c
|
|
gomodules.xyz/jsonpatch/v2 v2.2.0
|
|
google.golang.org/api v0.20.0
|
|
gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b
|
|
k8s.io/api v0.21.0
|
|
k8s.io/apiextensions-apiserver v0.21.0
|
|
k8s.io/apimachinery v0.21.0
|
|
k8s.io/apiserver v0.21.0
|
|
k8s.io/cli-runtime v0.21.0
|
|
k8s.io/client-go v0.21.0
|
|
k8s.io/code-generator v0.21.0
|
|
k8s.io/component-base v0.21.0
|
|
k8s.io/klog/v2 v2.8.0
|
|
k8s.io/kube-aggregator v0.21.0
|
|
k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7
|
|
k8s.io/kubectl v0.21.0
|
|
k8s.io/utils v0.0.0-20210111153108-fddb29f9d009
|
|
// To be replaced when there are stable versions that use k8s 1.21 libraries available
|
|
sigs.k8s.io/controller-runtime v0.9.0-beta.2
|
|
sigs.k8s.io/controller-tools v0.6.0-beta.0
|
|
sigs.k8s.io/testing_frameworks v0.1.2
|
|
sigs.k8s.io/yaml v1.2.0
|
|
software.sslmate.com/src/go-pkcs12 v0.0.0-20200830195227-52f69702a001
|
|
)
|
|
|
|
replace golang.org/x/net => golang.org/x/net v0.0.0-20210224082022-3d97a244fca7
|
|
|
|
// To be replaced once there is a release of kubernetes/apiserver that uses gnostic v0.5. See https://github.com/jetstack/cert-manager/pull/3926#issuecomment-828923436
|
|
replace github.com/googleapis/gnostic => github.com/googleapis/gnostic v0.4.1
|
|
|
|
// See https://github.com/jetstack/cert-manager/issues/3999
|
|
replace github.com/onsi/ginkgo => github.com/onsi/ginkgo v1.12.1
|
|
|
|
replace github.com/onsi/gomega => github.com/onsi/gomega v1.10.1
|
|
|
|
// See https://github.com/kubernetes/kubernetes/issues/101567
|
|
replace k8s.io/code-generator => github.com/kmodules/code-generator v0.21.1-rc.0.0.20210428003838-7eafae069eb0
|
|
|
|
replace k8s.io/gengo => github.com/kmodules/gengo v0.0.0-20210428002657-a8850da697c2
|
|
|
|
// See https://github.com/kubernetes/kubernetes/pull/99817
|
|
replace k8s.io/kube-openapi => k8s.io/kube-openapi v0.0.0-20210305001622-591a79e4bda7
|