MingzhouLin commented on issue #3017:
URL: https://github.com/apache/polaris/issues/3017#issuecomment-3508911258
Update the ingress as this to allow me expose extra services. Happy to raise
a PR for this.
```
rules:
{{- range .Values.ingress.hosts }}
- host: {{ .host | quote }}
http:
paths:
{{- range .paths }}
- path: {{ .path }}
pathType: {{ .pathType }}
backend:
service:
name: {{ default $fullName .backend.service.name }}
port:
number: {{ default $svcPort .backend.service.port }}
{{- end }}
{{- end }}
{{- end }}
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]