From dc47552180848eb6efc6d7d3a7084e731acaa705 Mon Sep 17 00:00:00 2001 From: Antonio Scandurra Date: Wed, 14 Dec 2022 08:58:19 +0100 Subject: [PATCH] Fix kubernetes configuration for readiness probe --- crates/collab/k8s/manifest.template.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/crates/collab/k8s/manifest.template.yml b/crates/collab/k8s/manifest.template.yml index 450a8ff541..42ff546cb9 100644 --- a/crates/collab/k8s/manifest.template.yml +++ b/crates/collab/k8s/manifest.template.yml @@ -62,8 +62,9 @@ spec: readinessProbe: httpGet: path: / - initialDelaySeconds: 5 - periodSeconds: 5 + port: 8080 + initialDelaySeconds: 5 + periodSeconds: 5 env: - name: HTTP_PORT value: "8080"