Skip to content

Commit

Permalink
fix(helm): correction of readiness and liveness probe
Browse files Browse the repository at this point in the history
  • Loading branch information
tom-rm-meyer-ISST committed Jun 20, 2024
1 parent 4c7ca15 commit 2d42582
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/puris/templates/backend-deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ spec:
protocol: TCP
livenessProbe:
httpGet:
path: {{ .Values.backend.puris.api.rootDir }}/actuator/health
path: {{ .Values.backend.puris.api.rootDir }}/actuator/health/liveness
port: http
initialDelaySeconds: {{ .Values.backend.livenessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.backend.livenessProbe.periodSeconds }}
Expand All @@ -190,7 +190,7 @@ spec:
failureThreshold: {{ .Values.backend.livenessProbe.failureThreshold }}
readinessProbe:
httpGet:
path: {{ .Values.backend.puris.api.rootDir }}/health/
path: {{ .Values.backend.puris.api.rootDir }}/actuator/health/readiness
port: http
initialDelaySeconds: {{ .Values.backend.readinessProbe.initialDelaySeconds }}
periodSeconds: {{ .Values.backend.readinessProbe.periodSeconds }}
Expand Down
2 changes: 1 addition & 1 deletion charts/puris/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ frontend:
# -- Repository of the docker image
repository: tractusx/app-puris-frontend
# -- THe policy for the image pull process
pullPolicy: IfNotPresent
pullPolicy: Always
# -- Overrides the image tag whose default is the chart appVersion.
tag: ""

Expand Down

0 comments on commit 2d42582

Please sign in to comment.