Skip to content

Commit

Permalink
Add startup probe to brig helm chart. (#2878)
Browse files Browse the repository at this point in the history
* add initial delay secondes to brig liveness and readiness probes

* replace initial delays with startupProbe

* add changelog message
  • Loading branch information
amitsagtani97 authored Dec 13, 2022
1 parent 578854f commit b025d13
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 0 deletions.
1 change: 1 addition & 0 deletions changelog.d/5-internal/pr-2878
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Add startup probe to brig helm chart.
7 changes: 7 additions & 0 deletions charts/brig/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -133,6 +133,13 @@ spec:
{{- end }}
ports:
- containerPort: {{ .Values.service.internalPort }}
startupProbe:
httpGet:
scheme: HTTP
path: /i/status
port: {{ .Values.service.internalPort }}
failureThreshold: 6
periodSeconds: 5
livenessProbe:
httpGet:
scheme: HTTP
Expand Down

0 comments on commit b025d13

Please sign in to comment.