FEAT(app): add resourcequota

- Add resourcequota
- Prevent memory overflow
This commit is contained in:
2025-11-24 15:26:42 +09:00
parent fb98ab0369
commit d33f0e36fb
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
apiVersion: v1
kind: ResourceQuota
metadata:
name: portfolio-quota
namespace: portfolio
spec:
hard:
requests.memory: "150Mi"
requests.cpu: "100m"
limits.memory: "250Mi"
limits.cpu: "200m"
pods: "2"