Compare commits

..

2 Commits

Author SHA1 Message Date
Tao Li
1790b8f0df
fix(build): includes tar into sidecar image
Signed-off-by: Tao Li <tao.li@enterprisedb.com>
2026-09-01 09:05:41 +08:00
Tao Li
585be09c70
chore(dept): Apply suggestion from @mnencia
Co-authored-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com>
Signed-off-by: Tao Li <tao.li@enterprisedb.com>
2026-08-31 17:18:18 +08:00
2 changed files with 14 additions and 0 deletions

View File

@ -198,5 +198,15 @@ var _ = Describe("Backup and restore", func() {
"using in-tree for backup and the plugin for restore on Azure",
&azureBackupPluginInTreeBackupPluginRestore{},
),
Entry("using the plugin for backup and restore on GCS",
&gcsBackupPluginBackupPluginRestore{},
),
Entry("using the plugin for backup and in-tree for restore on GCS",
&gcsBackupPluginBackupInTreeRestore{},
),
Entry(
"using in-tree for backup and the plugin for restore on GCS",
&gcsBackupPluginInTreeBackupPluginRestore{},
),
)
})

View File

@ -268,5 +268,9 @@ var _ = Describe("Replica cluster", func() {
"with Azurite",
azuriteReplicaClusterFactory{},
),
Entry(
"with fake-gcs-server",
gcsReplicaClusterFactory{},
),
)
})