@rtanner I have created the cluster with backups taken every minute:
schedule:
- name: "daily-backup"
schedule: "* * * * *"
keep: 5
storageName: s3-test
In the logs I see the following:
{"level":"info","ts":1622202129.7677152,"caller":"zapr/zapr.go:69","msg":"Created a new backup job","Namespace":"pxc","Name":"xb-cron-cluster1-s3-test-20210528114209-q6fav"}
{"level":"info","ts":1622202159.0833988,"caller":"zapr/zapr.go:69","msg":"deleting backup from s3","name":"cron-cluster1-s3-test-20210528113708-q6fav"}
{"level":"info","ts":1622202168.5467582,"caller":"zapr/zapr.go:69","msg":"backup was removed from s3","name":"cron-cluster1-s3-test-20210528113708-q6fav"}
{"level":"info","ts":1622202189.9975278,"caller":"zapr/zapr.go:69","msg":"Created a new backup job","Namespace":"pxc","Name":"xb-cron-cluster1-s3-test-20210528114309-q6fav"}
{"level":"info","ts":1622202215.7567892,"caller":"zapr/zapr.go:69","msg":"deleting backup from s3","name":"cron-cluster1-s3-test-20210528113808-q6fav"}
{"level":"info","ts":1622202225.0048485,"caller":"zapr/zapr.go:69","msg":"backup was removed from s3","name":"cron-cluster1-s3-test-20210528113808-q6fav"}
{"level":"info","ts":1622202250.0557785,"caller":"zapr/zapr.go:69","msg":"Created a new backup job","Namespace":"pxc","Name":"xb-cron-cluster1-s3-test-20210528114409-q6fav"}
{"level":"info","ts":1622202277.5778854,"caller":"zapr/zapr.go:69","msg":"deleting backup from s3","name":"cron-cluster1-s3-test-20210528113908-q6fav"}
{"level":"info","ts":1622202285.4088395,"caller":"zapr/zapr.go:69","msg":"backup was removed from s3","name":"cron-cluster1-s3-test-20210528113908-q6fav"}
I suspect the finalizer is getting stuck and cannot delete the backup from the S3 you have. If there was an error you would see error in the operator log:
logger.Error(err, "failed to delete backup", "name", cr.Name)
But I do not see the failures in the log you shared, so best guess is it is getting stuck for some reason.
Do you have any issues with manually deleting the files from the S3 when using the same keys as in Operator?