Question 32
Cloud Native ArchitectureIngress objects can be used to configure HTTP(S) routing rules. True or False?
Correct answer: A
Explanation
Ingress objects are Kubernetes resources that define how external HTTP and HTTPS traffic is routed to services inside the cluster. They are used to configure "HTTP(S) routing rules," so the statement is true.
Why each option is right or wrong
A. True
Kubernetes Ingress is the API object defined in the networking.k8s.io/v1 API that manages external access to Services, specifically by providing HTTP and HTTPS routing based on host and path rules. The object is used with an Ingress controller to terminate or pass through traffic and direct requests to backend Services, so the statement matches the core function described in the Kubernetes documentation.
B. False