FEAT(config): add dev environment configuration
- Add development environment settings - Configure dev-specific resources
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: todo-app
|
||||
labels:
|
||||
environment: development
|
||||
spec:
|
||||
replicas: 1
|
||||
template:
|
||||
spec:
|
||||
containers:
|
||||
- name: todo-app
|
||||
resources:
|
||||
requests:
|
||||
memory: "84Mi"
|
||||
cpu: "35m"
|
||||
limits:
|
||||
memory: "161Mi"
|
||||
cpu: "105m"
|
||||
Reference in New Issue
Block a user