kind: Ingress apiVersion: extensions/v1beta1 metadata: name: bakery # ingress名称 namespace: develop annotations: kubesphere.io/creator: dengbiao spec: rules: - host: bakery.dengbiao.top # 使用的域名 http: paths: - path: / pathType: ImplementationSpecific backend: serviceName: bakery # 流量转发到的服务 servicePort: 80