Skip to content

Commit

Permalink
Enabling probes because we have a probe endpoint now
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewFarley committed Oct 24, 2022
1 parent 6ff9700 commit bf3974e
Showing 1 changed file with 22 additions and 4 deletions.
26 changes: 22 additions & 4 deletions helm-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,28 @@ service:
annotations:
prometheus.io/scrape: 'true'

# Probes to detect failure
livenessProbe:
enabled: true
initialDelaySeconds: 120
periodSeconds: 10
timeoutSeconds: 9
successThreshold: 1
failureThreshold: 3
probeType: httpGet
path: /alive
port: default-service
readinessProbe:
enabled: true
initialDelaySeconds: 5
periodSeconds: 5
timeoutSeconds: 4
successThreshold: 2
failureThreshold: 2
probeType: httpGet
path: /ready
port: default-service

# For AWS Security Groups, if you wish to use this specify the sg-123123123 in an list here
securityGroupIDs: []

Expand Down Expand Up @@ -211,10 +233,6 @@ usingNewRecommendedLabels: true
labelsEnableDefault: true

# We don't use a lot of features from the upstream chart, so disable them
livenessProbe:
enabled: false
readinessProbe:
enabled: false
podDistuptionBudget:
enabled: false
ingress:
Expand Down

0 comments on commit bf3974e

Please sign in to comment.