From f264782a8fc7a217f9c822871376a44a7a28073a Mon Sep 17 00:00:00 2001 From: Luke Repko Date: Mon, 22 Apr 2024 14:44:06 -0500 Subject: [PATCH] docs: Add letsencrypt cert deployment info --- docs/infrastructure-letsencrypt.md | 86 ++++++++++++++++++++++++++++++ mkdocs.yml | 1 + 2 files changed, 87 insertions(+) diff --git a/docs/infrastructure-letsencrypt.md b/docs/infrastructure-letsencrypt.md index e69de29b..29850f4d 100644 --- a/docs/infrastructure-letsencrypt.md +++ b/docs/infrastructure-letsencrypt.md @@ -0,0 +1,86 @@ +# Deploying Let's Encrypt Certificates + +Are you tired of manually renewing and deploying a countless number of +certificates across your environments? Us too! + +## Apply the Let's Encrypt Cluster Issuer + +Before we can have Cert Manager start coordinating Let's Encrypt certificate +requests for us, we need to add an ACME issuer with a valid, monitored +email (for expiration reminders and other important ACME related information). + +``` yaml +read -p "Enter a valid email address for use with ACME: " ACME_EMAIL; \ +cat <