CKAD v1.35 · Services and Networking (20%) → "Use Ingress rules to expose applications" → "Provide and troubleshoot access to applications via services" Target time: 10 minutes
Namespace store runs two Services, both on port 80:
catalog -> replies "catalog"
checkout -> replies "checkout"
Expose both behind a single Ingress named store using ingressClassName
nginx, on host store.local:
store.local/catalog -> Service catalog:80
store.local/checkout -> Service checkout:80
Use pathType Prefix for both rules.
Both paths must actually serve traffic when requested with the
Host: store.local header.