Skip to content

Commit

Permalink
fix: galoy chart resource config (#3202)
Browse files Browse the repository at this point in the history
  • Loading branch information
krtk6160 authored Jun 1, 2023
1 parent 04cc93c commit 2d243aa
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/galoy/templates/api-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
- "/app/lib/services/tracing.js"
- "lib/servers/graphql-main-server.js"
resources:
{{ toYaml .Values.resources | nindent 10 }}
{{ toYaml .Values.galoy.api.resources | nindent 10 }}
ports:
- name: api
containerPort: {{ .Values.galoy.api.port }}
Expand Down
2 changes: 1 addition & 1 deletion charts/galoy/templates/exporter-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ spec:
- "/app/lib/services/tracing.js"
- "lib/servers/exporter.js"
resources:
{{ toYaml .Values.resources | nindent 10 }}
{{ toYaml .Values.galoy.exporter.resources | nindent 10 }}
ports:
- name: http
containerPort: {{ .Values.galoy.exporter.port }}
Expand Down
2 changes: 1 addition & 1 deletion charts/galoy/templates/galoy-migration-job.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ spec:
- name: mongodb-migrate
image: "{{ .Values.galoy.images.mongodbMigrate.repository }}@{{ .Values.galoy.images.mongodbMigrate.digest }}"
resources:
{{ toYaml .Values.galoy.migrationJob.resources | nindent 10 }}
{{ toYaml .Values.galoy.mongoMigrationJob.resources | nindent 10 }}
env:
{{ include "galoy.mongodb.env" . | indent 8 }}
restartPolicy: Never
2 changes: 1 addition & 1 deletion charts/galoy/templates/trigger-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
- "/app/lib/services/tracing.js"
- "lib/servers/trigger.js"
resources:
{{ toYaml .Values.resources | nindent 10 }}
{{ toYaml .Values.galoy.trigger.resources | nindent 10 }}
ports:
- name: http
containerPort: {{ .Values.galoy.trigger.port }}
Expand Down
2 changes: 1 addition & 1 deletion charts/galoy/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -312,7 +312,7 @@ galoy:
balanceNotificationCron:
resources: {}
enabled: false
migrationJob:
mongoMigrationJob:
resources: {}
## Kratos
kratos:
Expand Down

0 comments on commit 2d243aa

Please sign in to comment.