fix(multiplayer): report allocator readiness

This commit is contained in:
Josh Creek
2026-09-02 19:11:01 +01:00
parent 6ebd6e59c1
commit cbefa86c5c
6 changed files with 140 additions and 6 deletions
+3 -2
View File
@@ -57,13 +57,14 @@ spec:
- --agones-url=https://kubernetes.default.svc
- --agones-namespace=cosmic-clash
- --provider-timeout=10s
- --readiness-max-stale=30s
- --metrics-addr=:9091
ports:
- name: metrics
containerPort: 9091
readinessProbe:
httpGet:
path: /metrics
path: /readyz
port: metrics
initialDelaySeconds: 2
periodSeconds: 5
@@ -71,7 +72,7 @@ spec:
failureThreshold: 3
livenessProbe:
httpGet:
path: /metrics
path: /healthz
port: metrics
initialDelaySeconds: 10
periodSeconds: 10