Skip to content

Commit d38c707

Browse files
committed
fix(e2e): add skipApiVersionCheck flag to Azurite emulator
The PostgreSQL container images install Python dependencies without pinning versions. When azure-storage-blob 12.28.0 was released on January 6, 2026, it introduced API version 2026-02-06 which Azurite 3.35.0 doesn't support yet. Adding the --skipApiVersionCheck flag allows Azurite to accept any API version, which is appropriate for test environments and prevents failures when Azure SDK libraries are updated. Signed-off-by: Marco Nenciarini <marco.nenciarini@enterprisedb.com>
1 parent 82b7540 commit d38c707

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

test/e2e/internal/objectstore/azurite.go

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,12 @@ func newAzuriteDeployment(namespace, name string) *appsv1.Deployment {
7474
// renovate: datasource=docker depName=mcr.microsoft.com/azure-storage/azurite versioning=docker
7575
// Version: 3.35.0
7676
Image: "mcr.microsoft.com/azure-storage/azurite@sha256:647c63a91102a9d8e8000aab803436e1fc85fbb285e7ce830a82ee5d6661cf37",
77+
Args: []string{
78+
"azurite-blob",
79+
"--blobHost",
80+
"0.0.0.0",
81+
"--skipApiVersionCheck",
82+
},
7783
Ports: []corev1.ContainerPort{
7884
{
7985
ContainerPort: 10000,

0 commit comments

Comments
 (0)