FEAT(config): add dev environment
- Add development environment configuration - Set resources to 70% of production
This commit is contained in:
19
deploy/k8s/overlays/dev/deployment-patch.yaml
Normal file
19
deploy/k8s/overlays/dev/deployment-patch.yaml
Normal file
@@ -0,0 +1,19 @@
|
||||
apiVersion: apps/v1
|
||||
kind: Deployment
|
||||
metadata:
|
||||
name: jovies-app
|
||||
labels:
|
||||
environment: development
|
||||
spec:
|
||||
replicas: 1
|
||||
template:
|
||||
spec:
|
||||
containers:
|
||||
- name: jovies-app
|
||||
resources:
|
||||
requests:
|
||||
memory: "42Mi"
|
||||
cpu: "35m"
|
||||
limits:
|
||||
memory: "84Mi"
|
||||
cpu: "105m"
|
||||
Reference in New Issue
Block a user