Skip to content

Commit

Permalink
fix(k8s): Increase resource limits (#742)
Browse files Browse the repository at this point in the history
- [ ] New feature
- [ ] Bug fix
- [ ] High impact

**Description of work:**
The analytics/requests/internal seems to require a lot of memory. Due to
these resource limits the pod was killed which resulted in a 502 bad
gateway. This PR increases the resources.

**Testing:**
- [ ] Can be tested
- [ ] Automatic tests created / updated
- [ ] Local tests are passing



**Checklist:**
- [ ] Considered automated tests
- [ ] Considered updating specification / documentation
- [ ] Considered work items 
- [ ] Considered security
- [ ] Performed developer testing
- [ ] Checklist finalized / ready for review
  • Loading branch information
terjebra authored Feb 13, 2025
1 parent 2c5350f commit b3d9464
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,11 @@ spec:
value: "{{clientId}}"
resources:
requests:
memory: "250Mi"
cpu: "50m"
limits:
memory: "500Mi"
memory: "700Mi"
cpu: "200m"
limits:
memory: "1500Mi"
cpu: "250m"
args:
- /server

Expand Down

0 comments on commit b3d9464

Please sign in to comment.