Skip to content

Commit

Permalink
Merge branch 'dev' of gitlab.com:buycycle/bot into dev
Browse files Browse the repository at this point in the history
  • Loading branch information
rauner committed Apr 19, 2024
2 parents 1c9fbbf + bcbe9b6 commit 4237dc9
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions helm/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,39 @@ resources:
requests:
memory: "1Gi"

startupProbe:
httpGet:
path: /health
port: 3000
scheme: HTTP
initialDelaySeconds: 30
periodSeconds: 40
timeoutSeconds: 5
successThreshold: 1
failureThreshold: 30

livenessProbe:
httpGet:
path: /health
port: 3000
scheme: HTTP
initialDelaySeconds: 30
failureThreshold: 8
periodSeconds: 1
successThreshold: 1
timeoutSeconds: 4

readinessProbe:
httpGet:
path: /health
port: 3000
scheme: HTTP
initialDelaySeconds: 30
failureThreshold: 5
periodSeconds: 1
successThreshold: 1
timeoutSeconds: 4

containerPort: 3000
service:
enabled: true
Expand Down

0 comments on commit 4237dc9

Please sign in to comment.