Skip to content

Commit

Permalink
Update for startupProbe, livenessProbe, readinessProbe in meilisearch…
Browse files Browse the repository at this point in the history
….yaml

sur les startupProbe, livenessProbe, readinessProbe, j'ai du mettre : 
port: 7700

sinon j'avais une erreur 
'Startup probe errored: strconv.Atoi: parsing "http": invalid syntax'
et le service reste innaccessible
  • Loading branch information
batchris authored Sep 22, 2024
1 parent e2d6b4e commit f8dbb9d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions manifests/meilisearch.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -117,20 +117,20 @@ spec:
startupProbe:
httpGet:
path: /health
port: http
port: 7700
periodSeconds: 1
initialDelaySeconds: 1
failureThreshold: 60
livenessProbe:
httpGet:
path: /health
port: http
port: 7700
periodSeconds: 10
initialDelaySeconds: 0
readinessProbe:
httpGet:
path: /health
port: http
port: 7700
periodSeconds: 10
initialDelaySeconds: 0
resources:
Expand Down

0 comments on commit f8dbb9d

Please sign in to comment.