You are troubleshooting an AI application container in an AKS cluster that cannot resolve external domain names (e.g., huggingface.co). Which TWO Kubernetes components should you investigate?
Trap 1: Horizontal Pod Autoscaler configuration
HPA controls replica count scaling, not DNS resolution.
Trap 2: Persistent Volume Claim binding state
PVC binding relates to storage, not DNS name resolution.
Trap 3: Ingress controller SSL certificate expiration
SSL certificates affect TLS handshakes, not raw DNS lookups.
- A
kube-dns service endpoint mapping
The kube-dns service routes DNS queries to CoreDNS pods.
- B
Horizontal Pod Autoscaler configuration
Why wrong: HPA controls replica count scaling, not DNS resolution.
- C
Persistent Volume Claim binding state
Why wrong: PVC binding relates to storage, not DNS name resolution.
- D
Ingress controller SSL certificate expiration
Why wrong: SSL certificates affect TLS handshakes, not raw DNS lookups.
- E
CoreDNS deployment and pod health in the kube-system namespace
CoreDNS provides internal cluster DNS resolution for all pods.