Advertisement
Guest User

Untitled

a guest
Oct 27th, 2021
27
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. server: https://acme-staging-v02.api.letsencrypt.org/directory
  12. privateKeySecretRef:
  13. # Secret resource that will be used to store the account's private key.
  14. name: example-issuer-account-key
  15. # Add a single challenge solver, HTTP01 using nginx
  16. solvers:
  17. - http01:
  18. ingress:
  19. class: nginx
  20.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement