Skip to content

Commit 28d16a9

Browse files
authored
fix(storage): re-enable checksum validation (#1247)
1 parent 8b64ea4 commit 28d16a9

File tree

2 files changed

+0
-11
lines changed

2 files changed

+0
-11
lines changed

internal/controllers/common/resource_definitions/resource_definitions.go

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1473,13 +1473,6 @@ func NewCoreContainer(cr *model.CryostatInstance, specs *ServiceSpecs, imageTag
14731473
if DeployManagedStorage(cr) {
14741474
// default environment variable settings for managed/provisioned cryostat-storage instance
14751475
envs = append(envs, []corev1.EnvVar{
1476-
// FIXME since Quarkus 3.20 / S3 SDK 2.30.36 leaving this enabled results in junk 'chunk-signature' data
1477-
// being inserted to PutObjectRequests when the object storage instance is SeaweedFS/cryostat-storage
1478-
// See https://github.com/cryostatio/cryostat/issues/948
1479-
{
1480-
Name: "QUARKUS_S3_CHECKSUM_VALIDATION",
1481-
Value: "false",
1482-
},
14831476
{
14841477
Name: "QUARKUS_S3_ENDPOINT_OVERRIDE",
14851478
Value: specs.StorageURL.String(),

internal/test/resources.go

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2714,10 +2714,6 @@ func (r *TestResources) NewCoreEnvironmentVariables(reportsUrl string, ingress b
27142714
Name: "QUARKUS_DATASOURCE_USERNAME",
27152715
Value: "cryostat",
27162716
},
2717-
{
2718-
Name: "QUARKUS_S3_CHECKSUM_VALIDATION",
2719-
Value: "false",
2720-
},
27212717
{
27222718
Name: "QUARKUS_S3_ENDPOINT_OVERRIDE",
27232719
Value: fmt.Sprintf("%s://%s-storage.%s.svc.cluster.local:%d", storageProtocol, r.Name, r.Namespace, storagePort),

0 commit comments

Comments
 (0)