diff --git a/devops/core-plus/deploy/templates/deploy.yaml b/devops/core-plus/deploy/templates/deploy.yaml
index babe4fbcee78746e2ca06e9c369c6ae0f68f87e8..0a21179c603ece585f9ff208d5cca66b59a5461d 100644
--- a/devops/core-plus/deploy/templates/deploy.yaml
+++ b/devops/core-plus/deploy/templates/deploy.yaml
@@ -41,10 +41,16 @@ spec:
           livenessProbe:
             failureThreshold: 3
             httpGet:
-              path: /api/partition/v1/liveness_check
-              port: 8080
+              path: /health/livenessState
+              port: 8081
             initialDelaySeconds: 250
             periodSeconds: 10
+          readinessProbe:
+            failureThreshold: 2
+            httpGet:
+              path: /health/readinessState
+              port: 8081
+            periodSeconds: 10
           resources:
             requests:
               cpu: {{ .Values.data.requestsCpu | quote }}
diff --git a/devops/gc/deploy/templates/deploy.yaml b/devops/gc/deploy/templates/deploy.yaml
index 475b9eec3afae2bd01ab68b2381b6baf11fe2a9d..0be534efcd8ba7fa202a26a50a22892950268377 100644
--- a/devops/gc/deploy/templates/deploy.yaml
+++ b/devops/gc/deploy/templates/deploy.yaml
@@ -43,10 +43,16 @@ spec:
           livenessProbe:
             failureThreshold: 3
             httpGet:
-              path: /api/partition/v1/liveness_check
-              port: 8080
+              path: /health/livenessState
+              port: 8081
             initialDelaySeconds: 250
             periodSeconds: 10
+          readinessProbe:
+            failureThreshold: 2
+            httpGet:
+              path: /health/readinessState
+              port: 8081
+            periodSeconds: 10
           resources:
             requests:
               cpu: {{ .Values.data.requestsCpu | quote }}