Project

General

Profile

Files » certmanager-acme.yaml

Christian Orellana, 02/08/2022 10:53 AM

 
1
apiVersion: cert-manager.io/v1
2
kind: ClusterIssuer
3
metadata:
4
  name: letsencrypt-prod
5
  namespace: cert-manager
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: your-email@uncloud.co
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
    solvers:
17
    - http01:
18
        ingress:
19
          class: nginx
(2-2/3)