Kubernetes Ingress 与 Azure
我想知道 Kubernetes Ingress 是如何工作的。
- 是否有应用顺序,服务和部署是否已应用,入口是在之前还是之后?
- 为了使用 azure 测试入口,我在 azure 中创建了一个 kubernates 服务(在那里应用了服务和部署等)。在 Azure 中,Kubernate 版本或网络下有 API 服务器地址(例如 xyzzy.123.k8s.io )。我可以在 Ingress YAML 中输入此域作为主机吗?
像这样:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: test
spec:
tls:
- hosts:
- xyzzy.123.k8s.io <--- Azure
rules:
- host: xyzzy.123.k8s.io
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: test
port:
number: 8080
- 我在 Azure 中哪里可以看到我所有应用的入口?
I would like to know how Kubernates Ingress works.
- Is there an apply order, service and deployment are applied, does ingress come before or after?
- To test ingress with azure, I created a kubernates service in azure (service and deployment, etc. applied there). In Azure there is the API-Serveraddress under the Kubernate version or under Network (like xyzzy.123.k8s.io ). Can I enter this domain as a host in my Ingress YAML?
like this:
apiVersion: networking.k8s.io/v1
kind: Ingress
metadata:
name: test
spec:
tls:
- hosts:
- xyzzy.123.k8s.io <--- Azure
rules:
- host: xyzzy.123.k8s.io
http:
paths:
- path: /
pathType: Prefix
backend:
service:
name: test
port:
number: 8080
- where can I see in Azure all my applied ingresses?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)