FEAT(config): add dev environment

- Add development environment configuration
- Set resources to 70% of production
This commit is contained in:
2025-12-03 14:24:18 +09:00
parent 0831e3e288
commit 30c890b17c
5 changed files with 59 additions and 1 deletions

View File

@@ -0,0 +1,12 @@
apiVersion: v1
kind: ResourceQuota
metadata:
name: jovies-dev-quota
namespace: jovies-dev
spec:
hard:
requests.memory: "420Mi"
requests.cpu: "420m"
limits.memory: "630Mi"
limits.cpu: "840m"
pods: "6"