Created
June 29, 2021 16:14
-
-
Save JaniKibichi/d5646e218a255e7f2e4e00280013ae08 to your computer and use it in GitHub Desktop.
The Issuer
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
apiVersion: cert-manager.io/v1 | |
kind: ClusterIssuer | |
metadata: | |
name: letsencrypt-prod | |
spec: | |
acme: | |
# Email address used for ACME registration | |
email: [email protected] | |
server: https://acme-v02.api.letsencrypt.org/directory | |
privateKeySecretRef: | |
# Name of a secret used to store the ACME account private key | |
name: letsencrypt-prod-private-key | |
# Add a single challenge solver, HTTP01 using nginx | |
solvers: | |
- http01: | |
ingress: | |
class: nginx |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment