diff --git a/production/helm/templates/loki/deployment.yaml b/production/helm/templates/loki/deployment.yaml
index c8dc8bf1a4ab0c1071bf4e20b82bc38af46c63ac..860f46e9f91577021633070abfc6e26c6bf62c42 100644
--- a/production/helm/templates/loki/deployment.yaml
+++ b/production/helm/templates/loki/deployment.yaml
@@ -13,6 +13,9 @@ metadata:
 {{- end }}
 spec:
   replicas: {{ .Values.loki.replicas }}
+  {{- if .Values.loki.minReadySeconds}}
+  minReadySeconds: {{ .Values.loki.minReadySeconds }}
+  {{- end }}
   selector:
     matchLabels:
       app: {{ template "loki.name" . }}
diff --git a/production/helm/values.yaml b/production/helm/values.yaml
index dee4dc5e3b2950425f6dbeacce11b8856cb053a6..884a98dccb053b73d2d505d350dfda817ee58116 100644
--- a/production/helm/values.yaml
+++ b/production/helm/values.yaml
@@ -8,6 +8,7 @@ serviceAccount:
 
 loki:
   replicas: 1
+  minReadySeconds: 60
   deploymentStrategy: RollingUpdate
 
   image: