Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion helm/tenant/templates/tenant.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ spec:
storageClassName: {{ .storageClassName }}
{{- end }}
accessModes:
- ReadWriteOnce
- {{ .accessModes }}
resources:
requests:
storage: {{ .size | default "10Gi" }}
Expand Down
4 changes: 4 additions & 0 deletions helm/tenant/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,9 @@ tenant:
# The capacity per volume requested per MinIO Tenant Pod.
size: 10Gi
###
# The accessModes for the Persistent Volume Claims created for this pool.
accessModes: ReadWriteOnce
###
# The `terminationGracePeriodSeconds <https://kubernetes.io/docs/concepts/workloads/pods/pod-lifecycle/#pod-termination-grace-period>`__ for MinIO Tenant Pods.
# terminationGracePeriodSeconds: 30
###
Expand All @@ -149,6 +152,7 @@ tenant:
# Please make sure to set xfs for "csi.storage.k8s.io/fstype" parameter under StorageClass.parameters.
# Docs: https://github.com/kubernetes-sigs/aws-ebs-csi-driver/blob/master/docs/parameters.md
# storageClassName: standard

###
# Specify `storageAnnotations <https://kubernetes.io/docs/concepts/overview/working-with-objects/annotations/>`__ to associate to PVCs.
storageAnnotations: { }
Expand Down