fix(multiplayer): gate API readiness on database

This commit is contained in:
Josh Creek
2026-09-02 19:14:21 +01:00
parent 1bce603c33
commit 51f8008a38
7 changed files with 95 additions and 10 deletions
+1 -1
View File
@@ -47,7 +47,7 @@ class KubernetesPolicyTest(unittest.TestCase):
def test_control_plane_has_health_rollout_and_failure_domain_guards(self):
deployment = self.read("control-plane-deployment.yaml")
for required in (
"readinessProbe:", "livenessProbe:", "path: /healthz", "port: http",
"readinessProbe:", "livenessProbe:", "path: /readyz", "path: /healthz", "port: http",
"type: RollingUpdate", "maxUnavailable: 0", "maxSurge: 1",
"terminationGracePeriodSeconds: 10",
"topologySpreadConstraints:", "maxSkew: 1",