2025-09-28 13:54:28 +02:00
|
|
|
apiVersion: cert-manager.io/v1
|
|
|
|
|
kind: ClusterIssuer
|
|
|
|
|
metadata:
|
|
|
|
|
name: letsencrypt-production
|
|
|
|
|
namespace: cert-manager
|
|
|
|
|
spec:
|
|
|
|
|
acme:
|
|
|
|
|
# The ACME server URL (Let's Encrypt production)
|
|
|
|
|
server: https://acme-v02.api.letsencrypt.org/directory
|
|
|
|
|
# Email address used for ACME registration
|
2026-01-12 14:24:14 +01:00
|
|
|
email: admin@bakewise.ai
|
2025-09-28 13:54:28 +02:00
|
|
|
# Name of a secret used to store the ACME account private key
|
|
|
|
|
privateKeySecretRef:
|
|
|
|
|
name: letsencrypt-production
|
|
|
|
|
# Enable the HTTP-01 challenge provider
|
|
|
|
|
solvers:
|
|
|
|
|
- http01:
|
|
|
|
|
ingress:
|
2026-01-20 22:05:10 +01:00
|
|
|
class: public
|
2025-09-28 13:54:28 +02:00
|
|
|
podTemplate:
|
|
|
|
|
spec:
|
|
|
|
|
nodeSelector:
|
|
|
|
|
"kubernetes.io/os": linux
|