Skip to content

Commit

Permalink
Refine liveness and readiness probes (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
JohnNiang authored Oct 14, 2024
1 parent 6bbfb6d commit 704684a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions charts/halo/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -408,7 +408,7 @@ containerSecurityContext:
livenessProbe:
enabled: true
httpGet:
path: /actuator/health
path: /actuator/health/liveness
port: "{{ .Values.haloScheme }}"
scheme: "{{ .Values.haloScheme | upper }}"
## If using an HTTPS-terminating load-balancer, the probes may need to behave
Expand Down Expand Up @@ -437,7 +437,7 @@ livenessProbe:
readinessProbe:
enabled: true
httpGet:
path: /actuator/health
path: /actuator/health/readiness
port: "{{ .Values.haloScheme }}"
scheme: "{{ .Values.haloScheme | upper }}"
## If using an HTTPS-terminating load-balancer, the probes may need to behave
Expand Down

0 comments on commit 704684a

Please sign in to comment.