mirror of
https://git.vectorsigma.ru/public/k3s.git
synced 2026-08-07 07:09:57 +00:00
Fixed the etcd retention to delete orphaned snapshots based on the date
Signed-off-by: Vitor <vitor.savian@suse.com>
This commit is contained in:
@@ -2047,8 +2047,11 @@ func snapshotRetention(retention int, snapshotPrefix string, snapshotDir string)
|
||||
if len(snapshotFiles) <= retention {
|
||||
return nil
|
||||
}
|
||||
sort.Slice(snapshotFiles, func(i, j int) bool {
|
||||
return snapshotFiles[i].Name() < snapshotFiles[j].Name()
|
||||
sort.Slice(snapshotFiles, func(firstSnapshot, secondSnapshot int) bool {
|
||||
// it takes the name from the snapshot file ex: etcd-snapshot-example-{date}, makes the split using "-" to find the date, takes the date and sort by date
|
||||
firstSnapshotName, secondSnapshotName := strings.Split(snapshotFiles[firstSnapshot].Name(), "-"), strings.Split(snapshotFiles[secondSnapshot].Name(), "-")
|
||||
firstSnapshotDate, secondSnapshotDate := firstSnapshotName[len(firstSnapshotName)-1], secondSnapshotName[len(secondSnapshotName)-1]
|
||||
return firstSnapshotDate < secondSnapshotDate
|
||||
})
|
||||
|
||||
delCount := len(snapshotFiles) - retention
|
||||
|
||||
@@ -249,8 +249,11 @@ func (s *S3) snapshotRetention(ctx context.Context) error {
|
||||
return nil
|
||||
}
|
||||
|
||||
sort.Slice(snapshotFiles, func(i, j int) bool {
|
||||
return snapshotFiles[i].Key < snapshotFiles[j].Key
|
||||
sort.Slice(snapshotFiles, func(firstSnapshot, secondSnapshot int) bool {
|
||||
// it takes the key from the snapshot file ex: etcd-snapshot-example-{date}, makes the split using "-" to find the date, takes the date and sort by date
|
||||
firstSnapshotName, secondSnapshotName := strings.Split(snapshotFiles[firstSnapshot].Key, "-"), strings.Split(snapshotFiles[secondSnapshot].Key, "-")
|
||||
firstSnapshotDate, secondSnapshotDate := firstSnapshotName[len(firstSnapshotName)-1], secondSnapshotName[len(secondSnapshotName)-1]
|
||||
return firstSnapshotDate < secondSnapshotDate
|
||||
})
|
||||
|
||||
delCount := len(snapshotFiles) - s.config.EtcdSnapshotRetention
|
||||
|
||||
Reference in New Issue
Block a user