prod_issuer.yaml 626 B

12345678910111213141516171819
  1. apiVersion: cert-manager.io/v1
  2. kind: ClusterIssuer
  3. metadata:
  4. name: letsencrypt-prod
  5. spec:
  6. acme:
  7. # You must replace this email address with your own.
  8. # Let's Encrypt will use this to contact you about expiring
  9. # certificates, and issues related to your account.
  10. email: fred.damstra@gmail.com
  11. server: https://acme-v02.api.letsencrypt.org/directory
  12. privateKeySecretRef:
  13. # Secret resource that will be used to store the account's private key.
  14. name: letsencrypt-prod
  15. # Add a single challenge solver, HTTP01 using nginx
  16. solvers:
  17. - http01:
  18. ingress:
  19. class: public