clusterissuer-letsencrypt-prod.yaml 455 B

123456789101112131415
  1. apiVersion: certmanager.k8s.io/v1alpha1
  2. kind: ClusterIssuer
  3. metadata:
  4. name: letsencrypt-prod
  5. spec:
  6. acme:
  7. # The ACME server URL
  8. server: https://acme-v02.api.letsencrypt.org/directory
  9. # Email address used for ACME registration
  10. email: romain.rigaux@gmail.com
  11. # Name of a secret used to store the ACME account private key
  12. privateKeySecretRef:
  13. name: letsencrypt-prod
  14. # Enable the HTTP-01 challenge provider
  15. http01: {}