Created
June 30, 2021 09:33
-
-
Save JaniKibichi/ef8c760625aedd413b0d32594cfaae3c to your computer and use it in GitHub Desktop.
Production issuer for utility.ussd.janikibichi.com
This file contains 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