Skip to content

Commit

Permalink
Merge pull request #41 from Metatavu/bugfix-40-invalid-probes-on-deli…
Browse files Browse the repository at this point in the history
…very-info

Fixed invalid probes on delivery info service
  • Loading branch information
kaeline committed Jul 4, 2024
2 parents 1794b60 + d6b8c4c commit fc931a6
Showing 1 changed file with 27 additions and 27 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,32 +44,32 @@ spec:
cpu: {{ .Values.resources.requests.cpu }}
memory: {{ .Values.resources.requests.memory }}

startupProbe:
httpGet:
path: /q/health/started
port: 8080
scheme: HTTP
failureTreshold: {{ .Values.startupProbe.failureTreshold }}
periodSeconds: {{ .Values.startupProbe.periodSeconds }}
successThreshold: {{ .Values.startupProbe.successThreshold }}
timeoutSeconds: {{ .Values.startupProbe.timeoutSeconds }}
startupProbe:
httpGet:
path: /q/health/started
port: 8080
scheme: HTTP
failureTreshold: {{ .Values.startupProbe.failureTreshold }}
periodSeconds: {{ .Values.startupProbe.periodSeconds }}
successThreshold: {{ .Values.startupProbe.successThreshold }}
timeoutSeconds: {{ .Values.startupProbe.timeoutSeconds }}

livenessProbe:
httpGet:
path: /q/health/live
port: 8080
scheme: HTTP
failureTreshold: {{ .Values.livenessProbe.failureTreshold }}
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
successThreshold: {{ .Values.livenessProbe.successThreshold }}
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}
livenessProbe:
httpGet:
path: /q/health/live
port: 8080
scheme: HTTP
failureTreshold: {{ .Values.livenessProbe.failureTreshold }}
periodSeconds: {{ .Values.livenessProbe.periodSeconds }}
successThreshold: {{ .Values.livenessProbe.successThreshold }}
timeoutSeconds: {{ .Values.livenessProbe.timeoutSeconds }}

readinessProbe:
httpGet:
path: /q/health/ready
port: 8080
scheme: HTTP
failureTreshold: {{ .Values.readinessProbe.failureTreshold }}
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
successThreshold: {{ .Values.readinessProbe.successThreshold }}
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}
readinessProbe:
httpGet:
path: /q/health/ready
port: 8080
scheme: HTTP
failureTreshold: {{ .Values.readinessProbe.failureTreshold }}
periodSeconds: {{ .Values.readinessProbe.periodSeconds }}
successThreshold: {{ .Values.readinessProbe.successThreshold }}
timeoutSeconds: {{ .Values.readinessProbe.timeoutSeconds }}

0 comments on commit fc931a6

Please sign in to comment.