We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1ebb6f1 commit e001c8dCopy full SHA for e001c8d
controllers/modify_backup.go
@@ -41,6 +41,13 @@ func (s modifyBackup) reconcile(
41
return nil
42
}
43
44
+ // Modifying backups will remove encryption from previously encrypted backups.
45
+ // To preserve encryption, skip backup modifications if encryption is enabled.
46
+ // See FoundationDB issue: https://github.com/apple/foundationdb/issues/12544
47
+ if backup.Spec.EncryptionKeyPath != "" {
48
+ return nil
49
+ }
50
+
51
// The modify command is only required for continuous backups.
52
if backup.NeedsBackupReconfiguration() &&
53
backup.GetBackupMode() == fdbv1beta2.BackupModeContinuous {
0 commit comments