2024-12-19 14:32:26 +01:00
|
|
|
apiVersion: cert-manager.io/v1
|
|
|
|
kind: ClusterIssuer
|
|
|
|
metadata:
|
2024-12-19 17:18:36 +01:00
|
|
|
name: letsencrypt-production
|
|
|
|
namespace: cert-manager
|
2024-12-19 14:32:26 +01:00
|
|
|
spec:
|
|
|
|
acme:
|
|
|
|
email: acme@van-hemmen.com
|
2024-12-26 22:20:42 +01:00
|
|
|
# We use the production server here
|
2024-12-19 14:32:26 +01:00
|
|
|
server: https://acme-v02.api.letsencrypt.org/directory
|
|
|
|
privateKeySecretRef:
|
|
|
|
# if not existing, it will register a new account and stores it
|
2024-12-19 17:18:36 +01:00
|
|
|
name: letsencrypt-production
|
2024-12-19 14:32:26 +01:00
|
|
|
solvers:
|
|
|
|
- http01:
|
|
|
|
# The ingressClass used to create the necessary ingress routes
|
|
|
|
ingress:
|
|
|
|
class: traefik
|
2024-12-26 22:20:42 +01:00
|
|
|
---
|
|
|
|
apiVersion: cert-manager.io/v1
|
|
|
|
kind: ClusterIssuer
|
|
|
|
metadata:
|
|
|
|
name: letsencrypt-staging
|
|
|
|
namespace: cert-manager
|
|
|
|
spec:
|
|
|
|
acme:
|
|
|
|
email: acme@van-hemmen.com
|
|
|
|
# We use the staging server here for testing to avoid hitting rate limiting
|
|
|
|
server: https://acme-staging-v02.api.letsencrypt.org/directory
|
|
|
|
privateKeySecretRef:
|
|
|
|
# if not existing, it will register a new account and stores it
|
|
|
|
name: letsencrypt-staging
|
|
|
|
solvers:
|
|
|
|
- http01:
|
|
|
|
# The ingressClass used to create the necessary ingress routes
|
|
|
|
ingress:
|
|
|
|
class: traefik
|