Skip to content

Commit

Permalink
feat: set health check actuator resp. liveliness probe endpoint to '/…
Browse files Browse the repository at this point in the history
…actuator/health/liveness' and readiness probe endpoint to '/actuator/health/readiness' both on port '8090'
  • Loading branch information
mknoopvw committed Jun 16, 2023
1 parent 2fb0000 commit af44016
Showing 1 changed file with 18 additions and 3 deletions.
21 changes: 18 additions & 3 deletions charts/managed-identity-wallet/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,25 @@ spec:
containerPort: 8080
protocol: TCP
livenessProbe:
initialDelaySeconds: 60
failureThreshold: 3
httpGet:
path: /
port: http
path: /actuator/health/liveness
port: 8090
scheme: HTTP
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1
initialDelaySeconds: 90
readinessProbe:
failureThreshold: 3
httpGet:
path: /actuator/health/readiness
port: 8090
scheme: HTTP
periodSeconds: 5
successThreshold: 1
timeoutSeconds: 1
initialDelaySeconds: 90
resources:
requests:
cpu: "{{ .Values.resources.cpu }}m"
Expand Down

0 comments on commit af44016

Please sign in to comment.