...

Text file src/k8s.io/kubernetes/test/e2e/testing-manifests/ingress/multiple-certs/ing.yaml

Documentation: k8s.io/kubernetes/test/e2e/testing-manifests/ingress/multiple-certs

     1apiVersion: networking.k8s.io/v1
     2kind: Ingress
     3metadata:
     4  name: multiple-certs
     5spec:
     6  rules:
     7  - host: test1.ingress.com
     8    http:
     9      paths:
    10      - path: /test
    11        pathType: "ImplementationSpecific"
    12        backend:
    13          service:
    14            name: echoheaders-https
    15            port:
    16              number: 80
    17  - host: test2.ingress.com
    18    http:
    19      paths:
    20      - path: /test
    21        pathType: "ImplementationSpecific"
    22        backend:
    23          service:
    24            name: echoheaders-https
    25            port:
    26              number: 80
    27  - host: test3.ingress.com
    28    http:
    29      paths:
    30      - path: /test
    31        pathType: "ImplementationSpecific"
    32        backend:
    33          service:
    34            name: echoheaders-https
    35            port:
    36              number: 80
    37  - host: test4.ingress.com
    38    http:
    39      paths:
    40      - path: /test
    41        pathType: "ImplementationSpecific"
    42        backend:
    43          service:
    44            name: echoheaders-https
    45            port:
    46              number: 80

View as plain text