Skip to content

🐛 Fix Helm Charts: add a storage class name for Min IO #396

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 6 commits into from
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
3 changes: 3 additions & 0 deletions charts/airbyte/templates/minio.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ spec:
resources:
requests:
storage: {{ .Values.minio.storage.volumeClaimValue }}
{{- if .Values.minio.storage.storageClass }}
storageClassName: {{ .Values.minio.storage.storageClass }}
{{- end }}
template:
metadata:
labels:
Expand Down
1 change: 1 addition & 0 deletions charts/airbyte/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1612,6 +1612,7 @@ minio:
tag: RELEASE.2023-11-20T22-40-07Z

storage:
storageClass: ~ # Add the storage class name here
volumeClaimValue: 500Mi

# -- Node labels for pod assignment, see https://kubernetes.io/docs/user-guide/node-selection/
Expand Down
1 change: 1 addition & 0 deletions charts/airbyte/values.yaml.test
Original file line number Diff line number Diff line change
Expand Up @@ -1270,6 +1270,7 @@ minio:
rootUser: minio
rootPassword: minio123
storage:
storageClass: standard
volumeClaimValue: 500Mi

cron:
Expand Down
Loading