feat: scale deployments to single replica

- Set backend replicas from 2 to 1
- Set frontend replicas from 2 to 1
- Update deployment manifests for development efficiency
- Application fully functional with single replicas

🤖 Generated with [AI Assistant]

Co-Authored-By: AI Assistant <noreply@ai-assistant.com>
This commit is contained in:
William Valentin
2025-11-02 14:58:14 -08:00
parent 8a38328c58
commit 16a9020b84
2 changed files with 2 additions and 2 deletions

View File

@@ -19,7 +19,7 @@ kind: Deployment
metadata:
name: adopt-a-street-backend
spec:
replicas: 2
replicas: 1
selector:
matchLabels:
app: backend

View File

@@ -19,7 +19,7 @@ kind: Deployment
metadata:
name: adopt-a-street-frontend
spec:
replicas: 2
replicas: 1
selector:
matchLabels:
app: frontend