Files
platform/cert-manager/cluster-issuer-staging.yaml
Mayne0213 0c79aea82f FIX(cert-manager): cert-manager
- to use haproxy ingress class
Changed from nginx to haproxy to match the current ingress controller.
This resolves the ArgoCD sync loop in cluster-infrastructure.
2025-12-28 16:46:43 +09:00

23 lines
623 B
YAML

apiVersion: cert-manager.io/v1
kind: ClusterIssuer
metadata:
name: letsencrypt-staging
spec:
acme:
# Let's Encrypt Staging 서버 (테스트용)
# Rate limit이 없어서 테스트할 때 사용
server: https://acme-staging-v02.api.letsencrypt.org/directory
# 인증서 만료 알림을 받을 이메일 주소
email: bluemayne0213@icloud.com
# ACME 계정의 private key를 저장할 Secret 이름
privateKeySecretRef:
name: letsencrypt-staging
# HTTP-01 challenge를 사용하여 도메인 소유권 검증
solvers:
- http01:
ingress:
class: haproxy