Greetings, We have about 25 projects in our on premise sentry deployment on our Kubernetes cluster and we use sentry cronjob to discard events older than a month, everything works well.
Now we have the need for excluding a single project form the clean up job, but it seems like the sentry cleanup command will only accept a single project entry.
sentry cleanup --days DAYS --project TEXT
Is this possible to exclude a project using regex? otherwise I need to run 24 cronjob’s with individual project Ids, skipping the one that needs to be excluded.
Thanks!