feat: ingress.path now is an object intead string (#10)

This commit is contained in:
Wei-An Yen
2022-06-10 16:54:05 +08:00
committed by GitHub
parent 54b4a74b85
commit 2e064e65da
6 changed files with 28 additions and 14 deletions

View File

@ -337,7 +337,8 @@ ingress:
hosts:
- host: chart-example.local
paths:
- /path/to/somewhere
- path: /path/to/somewhere
pathType: ImplementationSpecific
tls:
- secretName: chart-example-tls
hosts:
@ -380,9 +381,12 @@ spec:
http:
paths:
- backend:
serviceName: release-name-mychart
servicePort: 80
service:
name: release-name-mychart
port:
number: 80
path: /path/to/somewhere
pathType: ImplementationSpecific
tls:
- hosts:
- "chart-example.local"