애플리케이션 파드 Ready 상태 확인 결과 (Pods Ready Status Verification)

개요 (Overview)

EKS Workshop Base Application의 모든 파드가 준비(Ready) 상태가 될 때까지 기다린 결과입니다. kubectl wait --for=condition=Ready 명령어를 사용하여 각 네임스페이스별로 파드의 Ready 상태를 확인했습니다.

Ready 상태 확인 과정 (Ready Status Verification Process)

✅ 네임스페이스별 Ready 상태 확인 결과

1. UI 네임스페이스 (UI Namespace)

kubectl wait --for=condition=Ready pod --all -n ui --timeout=300s

결과: ✅ pod/ui-77d959f887-qx2nl condition met

2. Catalog 네임스페이스 (Catalog Namespace)

kubectl wait --for=condition=Ready pod --all -n catalog --timeout=300s

결과: ✅

3. Carts 네임스페이스 (Carts Namespace)

kubectl wait --for=condition=Ready pod --all -n carts --timeout=300s

결과: ✅

4. Checkout 네임스페이스 (Checkout Namespace)

kubectl wait --for=condition=Ready pod --all -n checkout --timeout=300s

결과: ✅

5. Orders 네임스페이스 (Orders Namespace)

kubectl wait --for=condition=Ready pod --all -n orders --timeout=300s

결과: ✅