Fix Paperclip deployment scheduling and ArgoCD degraded status
- Reduce resource requests from 500m/1Gi to 200m/512Mi to fit available cluster capacity - Reduce resource limits from 2000m/4Gi to 1000m/2Gi for better resource sharing - Add IgnoreExtraneous annotation to paperclip-secrets SealedSecret to fix ArgoCD degraded status Resolves: DEV-387 Co-Authored-By: Paperclip <noreply@paperclip.ing>
This commit is contained in:
parent
4773547808
commit
1b613f06f5
2 changed files with 6 additions and 4 deletions
|
|
@ -103,11 +103,11 @@ spec:
|
||||||
failureThreshold: 3
|
failureThreshold: 3
|
||||||
resources:
|
resources:
|
||||||
limits:
|
limits:
|
||||||
cpu: 2000m
|
cpu: 1000m
|
||||||
memory: 4Gi
|
memory: 2Gi
|
||||||
requests:
|
requests:
|
||||||
cpu: 500m
|
cpu: 200m
|
||||||
memory: 1Gi
|
memory: 512Mi
|
||||||
volumes:
|
volumes:
|
||||||
- name: data
|
- name: data
|
||||||
persistentVolumeClaim:
|
persistentVolumeClaim:
|
||||||
|
|
|
||||||
|
|
@ -19,4 +19,6 @@ spec:
|
||||||
creationTimestamp: null
|
creationTimestamp: null
|
||||||
name: paperclip-secrets
|
name: paperclip-secrets
|
||||||
namespace: paperclip
|
namespace: paperclip
|
||||||
|
annotations:
|
||||||
|
argocd.argoproj.io/compare-options: IgnoreExtraneous
|
||||||
type: Opaque
|
type: Opaque
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue