Say I have a service that isn't hosted on Kubernetes. I also have an ingress controller and cert-manager set up on my kubernetes cluster.
Because it's so much simpler and easy to use kubernetes ingress to control access to services, I wanted to have a kubernetes ingress that points to a non-kubernetes service.
For example, I have a service that's hosted at https://10.0.40.1:5678 (ssl required, but self signed certificate) and want to access at service.example.com.
service.example.com:5678or justhttps://service.example.comwhich most browsers, tools, and libraries automatically treat as port 443? Do you expect clients to be able to properly verify the cert that is presented or do you just want SSL to encrypt the traffic (i.e. not worried about MITM and other attacks)? - Amit Kumar Gupta