|
12345678910111213141516171819 |
- kind: Ingress
- apiVersion: networking.k8s.io/v1
- metadata:
- name: camp-task-operator # ingress名称
- namespace: zhios
- annotations:
- kubesphere.io/creator: dengbiao
- spec:
- rules:
- - host: fwsrenwu1.zhiyingos.com # 使用的域名
- http:
- paths:
- - path: /
- pathType: ImplementationSpecific
- backend:
- service:
- name: zyos-camp-task-operator # 流量转发到的服务
- port:
- number: 80
|