Advertisement
Guest User

Untitled

a guest
Oct 27th, 2021
13
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.66 KB | None | 0 0
  1. ❯ cat issuer.yml
  2. apiVersion: cert-manager.io/v1alpha3
  3. kind: Issuer
  4. metadata:
  5. name: letsencrypt-prod
  6. spec:
  7. acme:
  8. # You must replace this email address with your own.
  9. # Let's Encrypt will use this to contact you about expiring
  10. # certificates, and issues related to your account.
  11. email: scottk@email.com
  12. server: https://acme-staging-v02.api.letsencrypt.org/directory
  13. privateKeySecretRef:
  14. # Secret resource that will be used to store the account's private key.
  15. name: example-issuer-account-key
  16. # Add a single challenge solver, HTTP01 using nginx
  17. solvers:
  18. - http01:
  19. ingress:
  20. class: nginx
  21.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement