diff --git a/docs/external-generated/packages/s3-cache/documents/overview.md b/docs/external-generated/packages/s3-cache/documents/overview.md index e3ab7ce84c..d669510042 100644 --- a/docs/external-generated/packages/s3-cache/documents/overview.md +++ b/docs/external-generated/packages/s3-cache/documents/overview.md @@ -155,11 +155,16 @@ Below is an example on how to connect to MinIO: "endpoint": "https://play.min.io", "forcePathStyle": true, "accessKeyId": "abc1234", - "secretAccessKey": "4321cba" + "secretAccessKey": "4321cba", + "disableChecksum": true } } ``` +{% callout type="note" title="Minio and checksum validation" %} +If you are using MinIO earlier than `2024-07-04T14-25-45Z` it is recommended to enabled `disabledChecksum` else you may trigger aws-sdk checksum errors such as `x-amz-checksum-crc32`. +{% /callout %} + | **Property** | **Description** | | ------------------- | --------------------------------------------------------------------------------------------------------- | | **region** | The ID of the S3 compatible storage region to use | @@ -168,6 +173,7 @@ Below is an example on how to connect to MinIO: | **endpoint** | The custom endpoint to upload artifacts to. If endpoint is not defined, the default AWS endpoint is used | | **accessKeyId** | AWS Access Key ID (optional if `AWS_ACCESS_KEY_ID` is set in the environment) | | **secretAccessKey** | AWS secret access key (optional if `AWS_SECRET_ACCESS_KEY` is set in the environment) | +| **disableChecksum** | This disables AWS' checksum validation for cache entries | # Cache Modes diff --git a/docs/shared/packages/s3-cache/s3-cache-plugin.md b/docs/shared/packages/s3-cache/s3-cache-plugin.md index e3ab7ce84c..2bfa711b42 100644 --- a/docs/shared/packages/s3-cache/s3-cache-plugin.md +++ b/docs/shared/packages/s3-cache/s3-cache-plugin.md @@ -155,11 +155,16 @@ Below is an example on how to connect to MinIO: "endpoint": "https://play.min.io", "forcePathStyle": true, "accessKeyId": "abc1234", - "secretAccessKey": "4321cba" + "secretAccessKey": "4321cba", + "disableChecksum: true } } ``` +{% callout type="note" title="Minio and checksum validation" %} +If you are using MinIO earlier than `2024-07-04T14-25-45Z` it is recommended to enabled `disabledChecksum` else you may trigger aws-sdk checksum errors such as `x-amz-checksum-crc32`. +{% /callout %} + | **Property** | **Description** | | ------------------- | --------------------------------------------------------------------------------------------------------- | | **region** | The ID of the S3 compatible storage region to use | @@ -168,6 +173,7 @@ Below is an example on how to connect to MinIO: | **endpoint** | The custom endpoint to upload artifacts to. If endpoint is not defined, the default AWS endpoint is used | | **accessKeyId** | AWS Access Key ID (optional if `AWS_ACCESS_KEY_ID` is set in the environment) | | **secretAccessKey** | AWS secret access key (optional if `AWS_SECRET_ACCESS_KEY` is set in the environment) | +| **disableChecksum** | This disables AWS' checksum validation for cache entries | # Cache Modes