Skip to content

Commit

Permalink
chore(galoy): expose notifications graphql server
Browse files Browse the repository at this point in the history
  • Loading branch information
bodymindarts committed Apr 19, 2024
1 parent 1bbadc8 commit f541058
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 0 deletions.
1 change: 1 addition & 0 deletions charts/galoy/templates/notifications-cm.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ data:
db:
pool_size: 20
subgraph_server:
port: {{ .Values.galoy.notifications.graphqlPort }}
jwks_url: "http://galoy-oathkeeper-api:4456/.well-known/jwks.json"
grpc_server:
port: {{ .Values.galoy.notifications.grpcPort }}
Expand Down
3 changes: 3 additions & 0 deletions charts/galoy/templates/notifications-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,9 @@ spec:
resources:
{{ toYaml .Values.galoy.notifications.resources | nindent 10 }}
ports:
- name: graphql
containerPort: {{ .Values.galoy.notifications.graphqlPort }}
protocol: TCP
- name: grpc
containerPort: {{ .Values.galoy.notifications.grpcPort }}
protocol: TCP
Expand Down
4 changes: 4 additions & 0 deletions charts/galoy/templates/notifications-service.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,10 @@ metadata:
spec:
type: {{ .Values.galoy.notifications.serviceType }}
ports:
- port: {{ .Values.galoy.notifications.graphqlPort }}
targetPort: {{ .Values.galoy.notifications.graphqlPort }}
protocol: TCP
name: graphql
- port: {{ .Values.galoy.notifications.grpcPort }}
targetPort: {{ .Values.galoy.notifications.grpcPort }}
protocol: TCP
Expand Down
1 change: 1 addition & 0 deletions charts/galoy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -423,6 +423,7 @@ galoy:
serviceType: ClusterIP
resources: {}
grpcPort: 6685
graphqlPort: 6684
config:
importFromKratos: false
smtp:
Expand Down

0 comments on commit f541058

Please sign in to comment.