Skip to content

Commit

Permalink
Update minio-minimal-tenant.yaml
Browse files Browse the repository at this point in the history
  • Loading branch information
milkydan authored Jul 6, 2024
1 parent cdc51d6 commit 4e4e605
Showing 1 changed file with 13 additions and 5 deletions.
18 changes: 13 additions & 5 deletions docs/operators/minio-minimal-tenant.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@ kind: Tenant
metadata:
name: myminio
spec:
## Create users in the Tenant using this field. Make sure to create secrets per user added here.
## Secret should follow the format used in `minio-creds-secret`.
users:
- name: myminio-user-secret
## Create configuration in the Tenant using this field. Make sure to create a secret with root credentials with the same name as in this section.
## Secret should follow the format used in `myminio-root-secret`.
configuration:
- name: myminio-root-secret
## Specification for MinIO Pool(s) in this Tenant.
pools:
## Servers specifies the number of MinIO Tenant Pods / Servers in this pool.
Expand All @@ -17,6 +17,14 @@ spec:
name: pool-0
## volumesPerServer specifies the number of volumes attached per MinIO Tenant Pod / Server.
volumesPerServer: 2
## Request CPU resources
resources:
limits:
cpu: 2
memory: 2Gi
requests:
cpu: 100m
memory: 512Mi
## This VolumeClaimTemplate is used across all the volumes provisioned for MinIO Tenant in this Pool.
volumeClaimTemplate:
metadata:
Expand Down Expand Up @@ -44,4 +52,4 @@ spec:
drop:
- ALL
seccompProfile:
type: "RuntimeDefault"
type: "RuntimeDefault"

0 comments on commit 4e4e605

Please sign in to comment.