Skip to content

Commit

Permalink
fix: only send /graphql to router (#3950)
Browse files Browse the repository at this point in the history
  • Loading branch information
bodymindarts authored Jul 30, 2023
1 parent 28bb11b commit 7b2fbb3
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion charts/galoy/templates/api-ingress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -48,11 +48,18 @@ spec:
{{- toYaml $.Values.galoy.api.ingress.extraPaths | nindent 10 }}
{{- end }}
- pathType: ImplementationSpecific
path: /
path: /graphql
backend:
service:
name: "{{ $.Release.Name }}-router"
port:
number: {{ $.Values.galoy.router.port }}
- pathType: ImplementationSpecific
path: /
backend:
service:
name: {{ template "galoy.api.fullname" $ }}
port:
number: {{ $.Values.galoy.api.port }}
{{- end -}}
{{- end -}}

0 comments on commit 7b2fbb3

Please sign in to comment.