Skip to content
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

minio: add default ilm #233

Merged
merged 1 commit into from
Jun 22, 2023
Merged
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
31 changes: 18 additions & 13 deletions lma/base/site-values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -158,20 +158,25 @@ charts:
- name: minio
override:
users:
- accessKey: $(defaultUser)
secretKey: $(defaultPassword)
policy: consoleAdmin
- accessKey: $(defaultUser)
secretKey: $(defaultPassword)
policy: consoleAdmin
buckets:
- name: thanos
policy: public
purge: false
versioning: true
objectlocking: false
- name: loki
policy: public
purge: false
versioning: true
objectlocking: false
- name: thanos
policy: public
purge: false
versioning: true
objectlocking: false
- name: loki
policy: public
purge: false
versioning: true
objectlocking: false
customCommands:
- ilm rule add --expire-days 90 myminio/thanos
- ilm rule add --expire-days 15 myminio/loki
- ilm ls myminio/thanos
- ilm ls myminio/loki
persistence.storageClass: $(storageClassName)
persistence.accessMode: ReadWriteOnce
persistence.size: 20Gi
Expand Down