apiVersion: cert-manager.io/v1 kind: ClusterIssuer metadata: name: letsencrypt-prod spec: acme: # The ACME server URL server: https://acme-v02.api.letsencrypt.org/directory # Email address used for ACME registration email: tobias@tobru.ch # Name of a secret used to store the ACME account private key privateKeySecretRef: name: letsencrypt-prod # An empty selector will 'match' all Certificate resources that # reference this Issuer. solvers: - selector: {} http01: ingress: class: traefik --- apiVersion: cert-manager.io/v1 kind: ClusterIssuer metadata: name: letsencrypt-staging spec: acme: server: https://acme-staging-v02.api.letsencrypt.org/directory email: tobias@tobru.ch privateKeySecretRef: name: letsencrypt-staging solvers: - selector: {} http01: ingress: class: traefik