Skip to content

Commit

Permalink
Reduce initial workers replicas to 1 (#1566)
Browse files Browse the repository at this point in the history
Every time we've been deploying, 30 worker nodes were created, then
immediately scaled back to 1 (or more depending on pending tasks).
Instead, just start with 1 replica and let the scaler make more if
needed.
  • Loading branch information
michaelkedar authored Aug 16, 2023
1 parent 064a3cb commit 632eb84
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion deployment/clouddeploy/gke-workers/base/workers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ kind: Deployment
metadata:
name: workers
spec:
replicas: 30
replicas: 1
selector:
matchLabels:
name: worker-private
Expand Down

0 comments on commit 632eb84

Please sign in to comment.