...

Text file src/k8s.io/kubernetes/test/e2e/testing-manifests/ingress/pre-shared-cert/ing.yaml

Documentation: k8s.io/kubernetes/test/e2e/testing-manifests/ingress/pre-shared-cert

     1apiVersion: networking.k8s.io/v1
     2kind: Ingress
     3metadata:
     4  name: pre-shared-cert
     5  # Below annotation will be added upon test:
     6  # annotations:
     7  #  ingress.gcp.kubernetes.io/pre-shared-cert: "test-pre-shared-cert"
     8spec:
     9  # kubemci requires a default backend.
    10  defaultBackend:
    11    service:
    12      name: echoheaders-https
    13      port:
    14        number: 80
    15  rules:
    16  - host: test.ingress.com
    17    http:
    18      paths:
    19      - path: /test
    20        pathType: "ImplementationSpecific"
    21        backend:
    22          service:
    23            name: echoheaders-https
    24            port:
    25              number: 80
    26

View as plain text