Skip to content

Commit

Permalink
fix: add http probe for atuin
Browse files Browse the repository at this point in the history
Signed-off-by: Devin Buhl <[email protected]>
  • Loading branch information
onedr0p committed Mar 13, 2024
1 parent a10f02d commit 748c212
Showing 1 changed file with 11 additions and 3 deletions.
14 changes: 11 additions & 3 deletions kubernetes/main/apps/default/atuin/app/helmrelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,18 @@ spec:
envFrom: *envFrom
args: ["server", "start"]
probes:
liveness:
enabled: true
readiness:
liveness: &probes
enabled: true
custom: true
spec:
httpGet:
path: /
port: *port
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 1
failureThreshold: 3
readiness: *probes
securityContext:
allowPrivilegeEscalation: false
readOnlyRootFilesystem: true
Expand Down

0 comments on commit 748c212

Please sign in to comment.