diff --git a/devops/core-plus/deploy/templates/deployment.yaml b/devops/core-plus/deploy/templates/deployment.yaml
index 9d1389793a37226e05998cfc2bd7eb8d79fe66a7..2776f2679ac3ad775cfa5dbb0f20367771ef2ece 100644
--- a/devops/core-plus/deploy/templates/deployment.yaml
+++ b/devops/core-plus/deploy/templates/deployment.yaml
@@ -57,10 +57,16 @@ spec:
         livenessProbe:
           failureThreshold: 3
           httpGet:
-            path: /api/storage/v2/liveness_check
-            port: 8080
+            path: /health/liveness
+            port: 8081
           initialDelaySeconds: 120
           periodSeconds: 10
+        readinessProbe:
+          failureThreshold: 3
+          httpGet:
+            path: /health/readiness
+            port: 8081
+          periodSeconds: 15
         resources:
           requests:
             cpu: {{ .Values.data.requestsCpu | quote }}
diff --git a/devops/gc/deploy/templates/deployment.yaml b/devops/gc/deploy/templates/deployment.yaml
index eaddd2035405df823e095a2b3411d7295ef112b4..8fa8b0365c68e36d4f600235c5b9981c07a6c0a5 100644
--- a/devops/gc/deploy/templates/deployment.yaml
+++ b/devops/gc/deploy/templates/deployment.yaml
@@ -59,10 +59,16 @@ spec:
         livenessProbe:
           failureThreshold: 3
           httpGet:
-            path: /api/storage/v2/liveness_check
-            port: 8080
+            path: /health/liveness
+            port: 8081
           initialDelaySeconds: 120
           periodSeconds: 10
+        readinessProbe:
+          failureThreshold: 3
+          httpGet:
+            path: /health/readiness
+            port: 8081
+          periodSeconds: 15
         resources:
           requests:
             cpu: {{ .Values.data.requestsCpu | quote }}