mirror of
https://github.com/minio/minio.git
synced 2025-04-06 12:50:34 -04:00
doc: Update Kubernetes examples to use Readiness Checks (#8727)
This commit is contained in:
parent
0b7bd024fb
commit
97d799b9f0
@ -5,6 +5,7 @@ metadata:
|
|||||||
labels:
|
labels:
|
||||||
app: minio
|
app: minio
|
||||||
spec:
|
spec:
|
||||||
|
publishNotReadyAddresses: true
|
||||||
clusterIP: None
|
clusterIP: None
|
||||||
ports:
|
ports:
|
||||||
- port: 9000
|
- port: 9000
|
||||||
|
@ -5,6 +5,7 @@ metadata:
|
|||||||
name: minio
|
name: minio
|
||||||
spec:
|
spec:
|
||||||
serviceName: minio
|
serviceName: minio
|
||||||
|
podManagementPolicy: Parallel
|
||||||
replicas: 4
|
replicas: 4
|
||||||
selector:
|
selector:
|
||||||
matchLabels:
|
matchLabels:
|
||||||
@ -41,6 +42,15 @@ spec:
|
|||||||
port: 9000
|
port: 9000
|
||||||
initialDelaySeconds: 120
|
initialDelaySeconds: 120
|
||||||
periodSeconds: 20
|
periodSeconds: 20
|
||||||
|
# Readiness probe detects situations where MinIO server instance
|
||||||
|
# is not ready to accept connections. Kubernetes automatically
|
||||||
|
# stops all the traffic to the pods if readiness checks fail.
|
||||||
|
readinessProbe:
|
||||||
|
httpGet:
|
||||||
|
path: /minio/health/ready
|
||||||
|
port: 9000
|
||||||
|
initialDelaySeconds: 120
|
||||||
|
periodSeconds: 20
|
||||||
# These are converted to volume claims by the controller
|
# These are converted to volume claims by the controller
|
||||||
# and mounted at the paths mentioned above.
|
# and mounted at the paths mentioned above.
|
||||||
volumeClaimTemplates:
|
volumeClaimTemplates:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user