github.com/nginxinc/kubernetes-ingress@v1.12.5/examples/mergeable-ingress-types/tea-minion.yaml (about)

     1  apiVersion: networking.k8s.io/v1beta1
     2  kind: Ingress
     3  metadata:
     4    name: cafe-ingress-tea-minion
     5    annotations:
     6      kubernetes.io/ingress.class: "nginx"
     7      nginx.org/mergeable-ingress-type: "minion"
     8  spec:
     9    rules:
    10    - host: cafe.example.com
    11      http:
    12        paths:
    13        - path: /tea
    14          backend:
    15            serviceName: tea-svc
    16            servicePort: 80