Skip to content

Commit

Permalink
fix: Use correct service name in Ingress
Browse files Browse the repository at this point in the history
  • Loading branch information
lindhe committed Jan 20, 2025
1 parent fb454ba commit fd8fdc9
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion charts/invenio/templates/ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,11 @@ spec:
- path: /
backend:
service:
name: {{ if .Values.haproxy.enabled }}haproxy{{ else }}web{{ end }}
{{- if .Values.haproxy.enabled }}
name: haproxy
{{- else }}
name: {{ include "invenio.fullname" . }}-web
{{- end }}
port:
name: http
pathType: Prefix
Expand Down

0 comments on commit fd8fdc9

Please sign in to comment.