25 lines
873 B
YAML
25 lines
873 B
YAML
apiVersion: minio.min.io/v2
|
|
kind: Tenant
|
|
metadata:
|
|
name: storage
|
|
namespace: minio-tenant
|
|
spec:
|
|
## Specification for MinIO Pool(s) in this Tenant.
|
|
pools:
|
|
## Servers specifies the number of MinIO Tenant Pods / Servers in this pool.
|
|
## For standalone mode, supply 1. For distributed mode, supply 4 or more.
|
|
## Note that the operator does not support upgrading from standalone to distributed mode.
|
|
- servers: 1
|
|
## volumesPerServer specifies the number of volumes attached per MinIO Tenant Pod / Server.
|
|
volumesPerServer: 4
|
|
## This VolumeClaimTemplate is used across all the volumes provisioned for MinIO Tenant in this
|
|
## Pool.
|
|
volumeClaimTemplate:
|
|
metadata:
|
|
name: data
|
|
spec:
|
|
accessModes:
|
|
- ReadWriteOnce
|
|
resources:
|
|
requests:
|
|
storage: 10Gi |