Skip to content

Commit

Permalink
Use newly implemented probes /health/{livez/readyz}
Browse files Browse the repository at this point in the history
  • Loading branch information
guilload committed Nov 16, 2022
1 parent 078230b commit a976536
Showing 1 changed file with 22 additions and 8 deletions.
30 changes: 22 additions & 8 deletions charts/quickwit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -71,12 +71,12 @@ searcher:

livenessProbe:
httpGet:
path: /
path: /health/livez
port: rest

readinessProbe:
httpGet:
path: /
path: /health/readyz
port: rest

nodeSelector: {}
Expand Down Expand Up @@ -117,12 +117,12 @@ indexer:

livenessProbe:
httpGet:
path: /
path: /health/livez
port: rest

readinessProbe:
httpGet:
path: /
path: /health/readyz
port: rest

nodeSelector: {}
Expand Down Expand Up @@ -159,14 +159,21 @@ metastore:
updateStrategy: {}
# type: RollingUpdate

startupProbe:
httpGet:
path: /health/livez
port: rest
failureThreshold: 12
periodSeconds: 5

livenessProbe:
httpGet:
path: /
path: /health/livez
port: rest

readinessProbe:
httpGet:
path: /
path: /health/readyz
port: rest

nodeSelector: {}
Expand Down Expand Up @@ -200,14 +207,21 @@ janitor:
updateStrategy: {}
# type: RollingUpdate

startupProbe:
httpGet:
path: /health/livez
port: rest
failureThreshold: 12
periodSeconds: 5

livenessProbe:
httpGet:
path: /
path: /health/livez
port: rest

readinessProbe:
httpGet:
path: /
path: /health/readyz
port: rest

nodeSelector: {}
Expand Down

0 comments on commit a976536

Please sign in to comment.