1234567891011121314151617181920212223242526272829303132333435 |
- apiVersion: extensions/v1beta1
- kind: Ingress
- metadata:
- name: multiple-certs
- spec:
- rules:
- - host: test1.ingress.com
- http:
- paths:
- - path: /test
- backend:
- serviceName: echoheaders-https
- servicePort: 80
- - host: test2.ingress.com
- http:
- paths:
- - path: /test
- backend:
- serviceName: echoheaders-https
- servicePort: 80
- - host: test3.ingress.com
- http:
- paths:
- - path: /test
- backend:
- serviceName: echoheaders-https
- servicePort: 80
- - host: test4.ingress.com
- http:
- paths:
- - path: /test
- backend:
- serviceName: echoheaders-https
- servicePort: 80
|