我看到了一些示例,其中 Kubernetes 集群安装了入口控制器,然后入口类添加了注释和主机,如下所示。
apiVersion: extensions/v1beta1
kind: Ingress
metadata:
annotations:
kubernetes.io/ingress.class: nginx
spec:
rules:
- host: testsvc.k8s.privatecloud.com
http:
我不确定安装了哪个服务以及使用 DNS “k8s.privatecloud.com”配置了哪个 IP以便路由请求?DNS 路由“k8s.privatecloud.com”如何将请求路由到 Kubernetes 集群?Kubernetes 桥接的入口如何工作?
此外,可能有许多服务配置了 hosts 规则,例如,
testsvc.k8s.privatecloud.com
testsvc1.k8s.privatecloud.com
testsvc2.k8s.privatecloud.com
当我们点击服务 testsvc.k8s.privatecloud.com 或 testsvc1.k8s.privatecloud.com 时,子域路由在这里是如何工作的...
谢谢