Michael Eischer

Results 855 comments of Michael Eischer

> Yup, it writes to raspi over SFTP to ext4 drive (the RAID one). Hmm, ext4 correctly handles the fsync calls from restic, so there shouldn't be any problems with...

Thanks for the feedback. I agree that none of those logs show any immediate problem. So we won't be able to debug this any further. I'll close the issue for...

/remove-lifecycle rotten I'll try to take a look in the next few days

> in order to support the field index in GAPI, or? Did you test this and it works without these adaptations? Triggering the shoot care reconciler actually works without adding...

Rebased to fix a merge conflict in pkg/gardenlet/controller/shoot/care/reconciler_test.go . I've extended the unit test to also test reconciles triggered by a managed resource. The test case only tests the parts...

/remove-lifecycle rotten @rfranzke can you take another look at the PR?

> Something like "only reconcile on `ManagedResource` changes at most 5 times per minute, otherwise fallback to the default sync period". Do you think we could easily add something like...

(FYI I'm not yet sure when I'll find time to continue with the PR, might still take a few more weeks. Sorry for all the delays.)

Ideally, restic would indeed only ask for the password once. The underlying reason is that `OpenRepository(ctx context.Context, opts GlobalOptions)`, which also queries for the password, is called with a copy...

Not exactly. I meant to have a default of `--repack-smaller-than (0.8 * (first percentile of all packfile sizes))`. Where percentile is calculated as follows: `percentile(list, p) = sorted(list)[len(list)*p/100]`. [Edit] What...