diff --git a/go.mod b/go.mod index c2d04df0c..d95216083 100644 --- a/go.mod +++ b/go.mod @@ -3,7 +3,7 @@ module github.com/jetstack/cert-manager go 1.16 // this if a fork to add EAB and alternative chains in ACME -// to be replaced after https://github.com/golang/crypto/pull/109 merges +// to be replaced after https://go-review.googlesource.com/c/crypto/+/277294/ merges replace golang.org/x/crypto => github.com/cert-manager/crypto v0.0.0-20210331051623-e6485987d0e4 require ( diff --git a/test/e2e/suite/issuers/acme/BUILD.bazel b/test/e2e/suite/issuers/acme/BUILD.bazel index 0349c551d..343981696 100644 --- a/test/e2e/suite/issuers/acme/BUILD.bazel +++ b/test/e2e/suite/issuers/acme/BUILD.bazel @@ -10,6 +10,8 @@ go_library( tags = ["manual"], visibility = ["//visibility:public"], deps = [ + "//pkg/api/util:go_default_library", + "//pkg/apis/acme/v1:go_default_library", "//pkg/apis/certmanager/v1:go_default_library", "//pkg/apis/meta/v1:go_default_library", "//test/e2e/framework:go_default_library", @@ -20,6 +22,7 @@ go_library( "@com_github_onsi_ginkgo//:go_default_library", "@com_github_onsi_gomega//:go_default_library", "@io_k8s_apimachinery//pkg/apis/meta/v1:go_default_library", + "@io_k8s_apimachinery//pkg/util/wait:go_default_library", ], ) diff --git a/test/e2e/suite/issuers/acme/issuer.go b/test/e2e/suite/issuers/acme/issuer.go index 38955577b..4dfca9afc 100644 --- a/test/e2e/suite/issuers/acme/issuer.go +++ b/test/e2e/suite/issuers/acme/issuer.go @@ -28,6 +28,8 @@ import ( metav1 "k8s.io/apimachinery/pkg/apis/meta/v1" "k8s.io/apimachinery/pkg/util/wait" + apiutil "github.com/jetstack/cert-manager/pkg/api/util" + cmacme "github.com/jetstack/cert-manager/pkg/apis/acme/v1" v1 "github.com/jetstack/cert-manager/pkg/apis/certmanager/v1" cmmeta "github.com/jetstack/cert-manager/pkg/apis/meta/v1" "github.com/jetstack/cert-manager/test/e2e/framework"