diff --git a/devops/gc/deploy/templates/deployment.yaml b/devops/gc/deploy/templates/deployment.yaml
index 54df76f61d38457796aaf926bec43e0d4330bdfc..9df366d0c2d008a85fd5ea59606d2b5d6e40c670 100644
--- a/devops/gc/deploy/templates/deployment.yaml
+++ b/devops/gc/deploy/templates/deployment.yaml
@@ -53,6 +53,14 @@ spec:
           runAsNonRoot: true
         ports:
         - containerPort: 8080
+        livenessProbe:
+          failureThreshold: 3
+          httpGet:
+            path: /api/indexer/v2/liveness_check
+            port: 8080
+            scheme: HTTP
+          initialDelaySeconds: 120
+          periodSeconds: 20
         resources:
           requests:
             cpu: {{ .Values.data.requestsCpu | quote }}