clusterissuer-letsencrypt-prod.yaml 555 B

1234567891011121314151617
  1. {{- if and .Values.ingress.create (eq .Values.ingress.type "nginx-ssl") -}}
  2. apiVersion: certmanager.k8s.io/v1alpha1
  3. kind: ClusterIssuer
  4. metadata:
  5. name: letsencrypt-website-prod
  6. spec:
  7. acme:
  8. # The ACME server URL
  9. server: https://acme-v02.api.letsencrypt.org/directory
  10. # Email address used for ACME registration
  11. email: {{ .Values.ingress.email }}
  12. # Name of a secret used to store the ACME account private key
  13. privateKeySecretRef:
  14. name: letsencrypt-prod
  15. # Enable the HTTP-01 challenge provider
  16. http01: {}
  17. {{- end -}}