github.com/nginxinc/kubernetes-ingress@v1.12.5/tests/data/annotations/mergeable/minion-annotations-differ.yaml (about)

     1  apiVersion: extensions/v1beta1
     2  kind: Ingress
     3  metadata:
     4    name: annotations-ingress-master
     5    annotations:
     6      kubernetes.io/ingress.class: "nginx"
     7      nginx.org/mergeable-ingress-type: "master"
     8      nginx.org/proxy-send-timeout: "10s"
     9      nginx.org/max-conns: "108"
    10  spec:
    11    rules:
    12    - host: annotations.example.com
    13  ---
    14  apiVersion: extensions/v1beta1
    15  kind: Ingress
    16  metadata:
    17    name: annotations-ingress-backend1-minion
    18    annotations:
    19      kubernetes.io/ingress.class: "nginx"
    20      nginx.org/mergeable-ingress-type: "minion"
    21      nginx.org/proxy-send-timeout: "25s"
    22      nginx.org/max-conns: "1048"
    23  spec:
    24    rules:
    25    - host: annotations.example.com
    26      http:
    27        paths:
    28        - path: /backend1
    29          backend:
    30            serviceName: backend1-svc
    31            servicePort: 80
    32  ---
    33  apiVersion: extensions/v1beta1
    34  kind: Ingress
    35  metadata:
    36    name: annotations-ingress-backend2-minion
    37    annotations:
    38      kubernetes.io/ingress.class: "nginx"
    39      nginx.org/mergeable-ingress-type: "minion"
    40      nginx.org/proxy-send-timeout: "33s"
    41      nginx.org/max-conns: "1024"
    42  spec:
    43    rules:
    44    - host: annotations.example.com
    45      http:
    46        paths:
    47        - path: /backend2
    48          backend:
    49            serviceName: backend2-svc
    50            servicePort: 80