本文介绍了除了 80/443 之外,我可以为 Kubernetes 入口设置自定义端口以侦听吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我不是说能够路由到特定端口,我的意思是实际更改入口监听的端口.
I don't mean being able to route to a specific port, I mean to actually change the port the ingress listens on.
这可能吗?如何?这是在哪里记录的?
Is this possible? How? Where is this documented?
推荐答案
没有.来自 kubernetes 文档:
Ingress 不会公开任意端口或协议.向互联网公开 HTTP 和 HTTPS 以外的服务通常使用 Service.Type=NodePort 或 Service.Type=LoadBalancer 类型的服务.
可以在 AWS 等云提供商上自定义 LoadBalancer 以侦听其他端口.
It may be possible to customize a LoadBalancer on a cloud provider like AWS to listen on other ports.
这篇关于除了 80/443 之外,我可以为 Kubernetes 入口设置自定义端口以侦听吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!