From d54d26df40537a9786d61e9cac5d3e4be52de201 Mon Sep 17 00:00:00 2001 From: andyjk15 Date: Sat, 22 Feb 2020 00:53:48 +0000 Subject: [PATCH] [22.02.20] Fixing probes --- configuration/kubernetes/deployment.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configuration/kubernetes/deployment.yaml b/configuration/kubernetes/deployment.yaml index be1a616..c5ab894 100644 --- a/configuration/kubernetes/deployment.yaml +++ b/configuration/kubernetes/deployment.yaml @@ -6,7 +6,7 @@ metadata: name: RESOURCE_NAME namespace: default spec: - replicas: 0 + replicas: 2 selector: matchLabels: app: RESOURCE_NAME @@ -56,7 +56,7 @@ spec: name: RESOURCE_NAME livenessProbe: httpGet: - path: / + path: /graphql port: 9090 initialDelaySeconds: 30 periodSeconds: 30 @@ -66,7 +66,7 @@ spec: readinessProbe: httpGet: port: 9090 - path: / + path: /graphql initialDelaySeconds: 30 periodSeconds: 5 timeoutSeconds: 1