使用cert-manager在k8s中运行一个容器以颁发Letsencrypt证书。 客户端和容器之间的安全性还可以,因此我不需要在客户端和服务器容器之间使用任何其他TLS代码-是吗?
我需要在grpc-dart中设置curl -H "Host:
,但是我只能通过grpc-dart代码中的安全连接来做到这一点:
final channel = new ClientChannel('mydomain.com', // localhost
port: 80,
options: const ChannelOptions(
credentials: const ChannelCredentials.secure(authority: "some header"))
);
是否仍然存在此问题,因为我不想使用比k8s和cert-manager所拥有的更多的TLS?
谢谢