Files
infra/deploy/cert-manager/issuer.yaml
2025-03-15 16:18:34 +01:00

30 lines
650 B
YAML

apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt-staging
spec:
acme:
email: hello@beatrice.wtf
server: https://acme-staging-v02.api.letsencrypt.org/directory
privateKeySecretRef:
name: acme-staging-secret
solvers:
- http01:
ingress:
class: nginx
---
apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt-prod
spec:
acme:
email: hello@beatrice.wtf
server: https://acme-v02.api.letsencrypt.org/directory
privateKeySecretRef:
name: acme-prod-secret
solvers:
- http01:
ingress:
class: nginx