feat: add fleet autoscaling baseline

This commit is contained in:
Josh Creek
2026-08-31 21:58:42 +01:00
parent b2ee9ec92d
commit 90126a4be7
5 changed files with 33 additions and 3 deletions
+17
View File
@@ -0,0 +1,17 @@
apiVersion: autoscaling.agones.dev/v1
kind: FleetAutoscaler
metadata:
name: cosmic-clash-game
namespace: cosmic-clash
labels:
app.kubernetes.io/name: game-fleet-autoscaler
spec:
fleetName: cosmic-clash-game
policy:
type: Buffer
buffer:
# Ready floor is deliberately independent of Allocated capacity. Agones
# scales Allocated servers down to zero while preserving this buffer.
minReady: 2
maxReady: 6
bufferSize: 2
+1
View File
@@ -7,3 +7,4 @@ resources:
- network-policies.yaml
- control-plane-deployment.yaml
- fleet.yaml
- fleet-autoscaler.yaml