core/ressources/cert-manager.yaml
Guillaume B.B. Van Hemmen 02ad42a186 #0000 - Refactor cert-manager setup and add Helm values file
Rename and reorganize scripts and configuration files for clarity. Updated `02_install_cert_manager.sh` to reference a new Helm values file for better configurability. Introduced nodeSelector and tolerations in `helm-values/cert-manager.yaml` for targeted deployment.
2024-12-27 14:50:43 +01:00

37 lines
1.1 KiB
YAML

apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt-production
namespace: cert-manager
spec:
acme:
email: acme@van-hemmen.com
# We use the production server here
server: https://acme-v02.api.letsencrypt.org/directory
privateKeySecretRef:
# if not existing, it will register a new account and stores it
name: letsencrypt-production
solvers:
- http01:
# The ingressClass used to create the necessary ingress routes
ingress:
class: traefik
---
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