In the document there is an example about Securing Kubernetes Ingress with Cert-Manager which is not using Gateway + VirtualService.
I have tried to make it work with acme http01 but the certificate can not be issued as in log challenge I have 404 error. Seems it can not access to domain checking challenges. Is there any best practice with the specifications that I mentioned?
[Update 1]
I want to use istio gateway with SDS
option for TLS
and secure that by using cert-manager with http-01.
According to the documentation I found some example like Securing Kubernetes Ingress with Cert-Manager or Deploy a Custom Ingress Gateway Using Cert-Manager. However these examples are using Kuberenetes Ingress resource itself (Not istio gateway) or like the second example is using dns-01
.
I need an instruction which including istio gateway with SDS
option for TLS
and secure that by using cert-manager with http-01. Istio gateway give me ability to use VirtualService
.
Thanks!