Skip to content

Commit

Permalink
prod: bump argocd dex memory limit to match staging
Browse files Browse the repository at this point in the history
The argocd-dex-server is continually crashing and restarting with error 139
in production. There are a lot of logs coming form this pod that may be related to
this.

Unfortunately it had less memory request and limit than staging

This patch hopes to resolve the crashing issue but also to correct the discrepancy
that staging has more resources than production; this should probably never happen.

Bug: T380029
  • Loading branch information
tarrow committed Dec 11, 2024
1 parent b8e276b commit b54a87b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 9 deletions.
4 changes: 2 additions & 2 deletions k8s/helmfile/env/production/argo-cd-base.values.yaml.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ applicationSet:
dex:
resources:
limits:
memory: 64Mi
memory: 128Mi
requests:
cpu: 10m
memory: 32Mi
memory: 64Mi

notifications:
resources:
Expand Down
7 changes: 0 additions & 7 deletions k8s/helmfile/env/staging/argo-cd-base.values.yaml.gotmpl
Original file line number Diff line number Diff line change
@@ -1,10 +1,3 @@
dex:
resources:
limits:
memory: 128Mi
requests:
memory: 64Mi

controller:
resources:
limits:
Expand Down

0 comments on commit b54a87b

Please sign in to comment.