Skip to content

Commit

Permalink
fix(chart): add liveness and readiness probes
Browse files Browse the repository at this point in the history
  • Loading branch information
oyyblin committed Nov 26, 2024
1 parent d2daed6 commit f122140
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions charts/updater/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,20 @@ spec:
name: http-prometheus
- containerPort: 8080
name: http
livenessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 5
readinessProbe:
httpGet:
path: /health
port: 8080
initialDelaySeconds: 0
periodSeconds: 10
timeoutSeconds: 5
envFrom:
- configMapRef:
name: {{ include "updater.fullname" . }}
Expand Down

0 comments on commit f122140

Please sign in to comment.