From b0b7ae9c1f255d14f2c856f77e056eb3d999e559 Mon Sep 17 00:00:00 2001 From: James Munnelly Date: Wed, 13 Jun 2018 23:11:55 +0100 Subject: [PATCH] Update e2e test ACME email Let's encrypt no longer allow use of @example.com emails for ACME accounts. This PR switches us to use a @cert-manager.io email for the ACME account used during e2e tests, as currently the dns01 e2e tests are performed against the let's encrypt staging endpoint due to issues described in https://github.com/letsencrypt/pebble/issues/118 --- test/e2e/certificate/certificate_acme.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/e2e/certificate/certificate_acme.go b/test/e2e/certificate/certificate_acme.go index 476b19fd8..e5c178ae9 100644 --- a/test/e2e/certificate/certificate_acme.go +++ b/test/e2e/certificate/certificate_acme.go @@ -31,7 +31,7 @@ import ( ) const invalidACMEURL = "http://not-a-real-acme-url.com" -const testingACMEEmail = "test@example.com" +const testingACMEEmail = "e2e@cert-manager.io" const testingACMEPrivateKey = "test-acme-private-key" const foreverTestTimeout = time.Second * 60