diff --git a/templates/onlyoffice-deployment.yaml b/templates/onlyoffice-deployment.yaml
index 3c59d50583831d5120b58382ec8c65f1db259a8c..9bf7c3c56476ef302bacf44ad290b9b75019db81 100644
--- a/templates/onlyoffice-deployment.yaml
+++ b/templates/onlyoffice-deployment.yaml
@@ -43,6 +43,19 @@ spec:
             successThreshold: {{ .Values.onlyoffice.livenessProbe.successThreshold }}
             failureThreshold: {{ .Values.onlyoffice.livenessProbe.failureThreshold }}
           {{- end }}
+          {{- if .Values.onlyoffice.readinessProbe.enabled }}
+          readinessProbe:
+            exec:
+              command:
+                - "/bin/bash"
+                - "-c"
+                - "output=$(curl -s http://localhost:{{ .Values.onlyoffice.containerPort }}/healthcheck); if [ $? -ne 0 ]; then exit 1; fi; if [ \"$output\" == \"true\" ]; then exit 0; else exit 2; fi"
+            initialDelaySeconds: {{ .Values.onlyoffice.readinessProbe.initialDelaySeconds }}
+            periodSeconds: {{ .Values.onlyoffice.readinessProbe.periodSeconds }}
+            timeoutSeconds: {{ .Values.onlyoffice.readinessProbe.timeoutSeconds }}
+            successThreshold: {{ .Values.onlyoffice.readinessProbe.successThreshold }}
+            failureThreshold: {{ .Values.onlyoffice.readinessProbe.failureThreshold }}
+          {{- end }}
           {{- if .Values.onlyoffice.startupProbe.enabled }}
           startupProbe:
             exec:
diff --git a/values.yaml b/values.yaml
index 22a64a74b4f1c4f268347aea2ce95e9ad9f1b98f..80477b459fa9540350103e8a03d1a4b7ce7c6d94 100644
--- a/values.yaml
+++ b/values.yaml
@@ -140,6 +140,14 @@ onlyoffice:
     successThreshold: 1
     failureThreshold: 2
 
+  readinessProbe:
+    enabled: true
+    initialDelaySeconds: 0
+    timeoutSeconds: 2
+    periodSeconds: 30
+    successThreshold: 1
+    failureThreshold: 2
+
   startupProbe:
     enabled: true
     timeoutSeconds: 2