diff --git a/helm-chart/templates/deployment.yaml b/helm-chart/templates/deployment.yaml index c8f283b..1da0d76 100644 --- a/helm-chart/templates/deployment.yaml +++ b/helm-chart/templates/deployment.yaml @@ -30,28 +30,21 @@ spec: {{- include "common.containerSecurityContext" . | nindent 12 }} resources: {{- include "common.resources" (dict "Values" .Values "name" "hivebox") | nindent 12 }} - startupProbe: - httpGet: - path: /readyz - port: 5000 - periodSeconds: 10 - failureThreshold: 1 - timeoutSeconds: 480 - initialDelaySeconds: 5 readinessProbe: httpGet: path: /readyz port: 5000 - periodSeconds: 60 - timeoutSeconds: 300 + initialDelaySeconds: 30 + timeoutSeconds: 480 failureThreshold: 3 + periodSeconds: 600 livenessProbe: httpGet: path: /version port: 5000 - periodSeconds: 60 timeoutSeconds: 3 failureThreshold: 3 + periodSeconds: 60 volumeMounts: - name: tmp-volume mountPath: /tmp