Skip to content

Commit

Permalink
fix: application-system-api replicas too high due to CPU request bein…
Browse files Browse the repository at this point in the history
…g too low (#15958)

* fix: application-system-api replicas too high due to CPU request being too low

* chore: charts update dirty files

---------

Co-authored-by: andes-it <[email protected]>
Co-authored-by: kodiakhq[bot] <49736102+kodiakhq[bot]@users.noreply.github.com>
  • Loading branch information
3 people authored Sep 11, 2024
1 parent bcf0cde commit b3af8c0
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ export const workerSetup =
})
.resources({
limits: { cpu: '400m', memory: '768Mi' },
requests: { cpu: '100m', memory: '384Mi' },
requests: { cpu: '150m', memory: '384Mi' },
})

export const serviceSetup = (services: {
Expand Down
2 changes: 1 addition & 1 deletion charts/islandis/values.dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -882,7 +882,7 @@ application-system-api-worker:
cpu: '400m'
memory: '768Mi'
requests:
cpu: '100m'
cpu: '150m'
memory: '384Mi'
schedule: '*/30 * * * *'
secrets:
Expand Down
2 changes: 1 addition & 1 deletion charts/islandis/values.prod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -872,7 +872,7 @@ application-system-api-worker:
cpu: '400m'
memory: '768Mi'
requests:
cpu: '100m'
cpu: '150m'
memory: '384Mi'
schedule: '*/30 * * * *'
secrets:
Expand Down
2 changes: 1 addition & 1 deletion charts/islandis/values.staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -880,7 +880,7 @@ application-system-api-worker:
cpu: '400m'
memory: '768Mi'
requests:
cpu: '100m'
cpu: '150m'
memory: '384Mi'
schedule: '*/30 * * * *'
secrets:
Expand Down

0 comments on commit b3af8c0

Please sign in to comment.