Reputation: 127
I'm looking for solution that allow me to set lifecycle policy for object in minio storage.
What do I want?
I want to delete objects from minIO
storage after 30 min.
Possible, but not suitable solution
mc rm -f --older-than 30m
.Upvotes: 2
Views: 10605
Reputation: 57
mc rm --recursive --dangerous --force --older-than 30m local
"local"
should be described in the file ~/.mc/config.json
Upvotes: 2