A school district wants TLS for an Ingress hostname using a certificate already in a Kubernetes Secret. Where is that Secret referenced in the classic Ingress API?
Select an answer to reveal the explanation.
Short Explanation
Look at the Ingress TLS block—that is where secretName lives for the cert. Point the hosts there and let the controller terminate TLS with that Secret.
Full Explanation
The Ingress spec.tls section lists hosts and a secretName referencing a TLS Secret. Controllers use that material for HTTPS on the matching hostnames. CNI ConfigMaps, IngressClass labels, and Pod hostname fields are not the Ingress TLS certificate reference mechanism.