Skip to content

Commit

Permalink
Merge pull request #29 from nfdi4health/fix/mica
Browse files Browse the repository at this point in the history
fix(k8s.mica): increase memory
  • Loading branch information
johannes-darms authored Sep 10, 2024
2 parents 987092b + 884edca commit 60e2c58
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
2 changes: 1 addition & 1 deletion k8s/mica/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ type: application
# This is the chart version. This version number should be incremented each time you make changes
# to the chart and its templates, including the app version.
# Versions are expected to follow Semantic Versioning (https://semver.org/)
version: 0.0.2
version: 0.0.3

# This is the version number of the application being deployed. This version number should be
# incremented each time you make changes to the application. Versions are not expected to
Expand Down
8 changes: 5 additions & 3 deletions k8s/mica/templates/mica.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,10 @@ spec:
- name: frontend
image: {{ .Values.image }}
resources:
limits:
memory: 8048Mi
requests:
memory: 512Mi
memory: 4Gi
limits:
memory: 8Gi
env:
{{- if .Values.ingress.dns }}
- name: SPRING_CSRF_ALLOWED
Expand Down Expand Up @@ -53,6 +53,8 @@ spec:
name: {{ .Release.Name }}-mongo-secret
key: password
optional: false
- name: JAVA_OPTS
value: -Xms4g -Xmx8g
ports:
- containerPort: 8082
volumeMounts:
Expand Down

0 comments on commit 60e2c58

Please sign in to comment.