Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 4 additions & 11 deletions helm-chart/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down