Let's encrypt Order/Challenge가 pending 일때

2025. 8. 23. 23:18k8s

 

  • CertificateRequest는 Approved=True인데, Order/Challenge가 pending이라서 실제 HTTP-01 검증이 아직 “제대로 제시(present)”되지 못하고 있어요.
  • 앞서 겪은 pathType Exact 거부 이슈를 반드시 해소한 뒤, 챌린지를 다시 만들게 해줘야 진행됩니다.

ingress-nginx 검증 완화

kubectl -n ingress-nginx patch configmap ingress-nginx-controller \
  --type merge -p '{"data":{"strict-validate-path-type":"false"}}'
kubectl -n ingress-nginx rollout restart deploy ingress-nginx-controller

# 확인
kubectl -n ingress-nginx get cm ingress-nginx-controller -o yaml | grep -i strict-validate-path-type

 

 

'k8s' 카테고리의 다른 글

K8S Ingress Controller Access 로그 확인  (0) 2025.08.30
K8s IP로 어느 Pod인지 찾기  (0) 2025.08.30
LLM 구성: vLLM + Qwen2.5-3B-Instruct  (0) 2025.08.20
pod 이름 조회해서 로그 출력하기  (0) 2025.08.16
pv의 CLAIM을 제거  (0) 2025.08.13