Compare commits

..

5 Commits

Author SHA1 Message Date
Tao Li
44d6a0807c
Merge 6c8a74f4aa into 3958ee4805 2026-09-01 14:03:20 +00:00
Tao Li
6c8a74f4aa
test(gcs): skip test using fake gcs server
Signed-off-by: Tao Li <tao.li@enterprisedb.com>
2026-09-01 22:02:49 +08:00
Tao Li
68ac9d4ae1
fix(build): includes tar into sidecar image
Signed-off-by: Tao Li <tao.li@enterprisedb.com>
2026-09-01 21:18:56 +08:00
Tao Li
318fb5cab8
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-09-01 21:18:49 +08:00
Tao Li
a874de6213
chore(dept): bump barman version to 3.20.0
Signed-off-by: Tao Li <tao.li@enterprisedb.com>
2026-08-31 17:18:18 +08:00
3 changed files with 2 additions and 27 deletions

View File

@ -1,8 +1,8 @@
# #
# This file is autogenerated by pip-compile with Python 3.13 # This file is autogenerated by pip-compile with Python 3.12
# by the following command: # by the following command:
# #
# pip-compile --allow-unsafe --generate-hashes --no-index --output-file=sidecar-requirements.txt --strip-extras sidecar-requirements.in # pip-compile --allow-unsafe --generate-hashes --output-file=sidecar-requirements.txt --strip-extras sidecar-requirements.in
# #
azure-core==1.41.0 \ azure-core==1.41.0 \
--hash=sha256:522b4011e8180b1a3dcd2024396a4e7fe9ac37fb8597db47163d230b5efe892d \ --hash=sha256:522b4011e8180b1a3dcd2024396a4e7fe9ac37fb8597db47163d230b5efe892d \

View File

@ -56,12 +56,6 @@ var _ = Describe("Backup and restore", func() {
ctx SpecContext, ctx SpecContext,
factory testCaseFactory, factory testCaseFactory,
) { ) {
switch factory.(type) {
case *gcsBackupPluginBackupPluginRestore, *gcsBackupPluginBackupInTreeRestore,
*gcsBackupPluginInTreeBackupPluginRestore:
Skip("GCS e2e tests are disabled until https://github.com/EnterpriseDB/barman/issues/1218 is fixed")
}
testResources := factory.createBackupRestoreTestResources(namespace.Name) testResources := factory.createBackupRestoreTestResources(namespace.Name)
By("starting the ObjectStore deployment") By("starting the ObjectStore deployment")
@ -204,15 +198,5 @@ var _ = Describe("Backup and restore", func() {
"using in-tree for backup and the plugin for restore on Azure", "using in-tree for backup and the plugin for restore on Azure",
&azureBackupPluginInTreeBackupPluginRestore{}, &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

@ -57,11 +57,6 @@ var _ = Describe("Replica cluster", func() {
ctx SpecContext, ctx SpecContext,
factory testCaseFactory, factory testCaseFactory,
) { ) {
switch factory.(type) {
case gcsReplicaClusterFactory:
Skip("GCS e2e tests are disabled until https://github.com/EnterpriseDB/barman/issues/1218 is fixed")
}
testResources := factory.createReplicaClusterTestResources(namespace.Name) testResources := factory.createReplicaClusterTestResources(namespace.Name)
By("starting the ObjectStore deployments") By("starting the ObjectStore deployments")
@ -273,9 +268,5 @@ var _ = Describe("Replica cluster", func() {
"with Azurite", "with Azurite",
azuriteReplicaClusterFactory{}, azuriteReplicaClusterFactory{},
), ),
Entry(
"with fake-gcs-server",
gcsReplicaClusterFactory{},
),
) )
}) })