FOLS3CL-54: Bump localstack image from 3.3.0 to s3-community-archive - #67
Open
julianladisch wants to merge 6 commits into
Open
FOLS3CL-54: Bump localstack image from 3.3.0 to s3-community-archive#67julianladisch wants to merge 6 commits into
julianladisch wants to merge 6 commits into
Conversation
Purpose localstack 3.3.0 has been released March 2024 and is outdated. We need to be compatible with the latest AWS S3. Localstack 3.3.0 is very big resulting in long download time and high memory consumption. The pom.xml property `<localstack.version>1.20.5</localstack.version>` is misleading. Approach Switch from 3.3.0 to s3-latest that is current and much smaller. localstack 3.3.0 image size: 415 MB - https://hub.docker.com/r/localstack/localstack/tags?name=3.3.0 localstack s3-latest image size: 106 MB - https://hub.docker.com/r/localstack/localstack/tags?name=s3-latest Pre-Merge Checklist: Before merging this PR, please go through the following list and take appropriate actions. - Does this PR meet or exceed the expected quality standards? - [x] Code coverage on new code is 80% or greater - [x] Duplications on new code is 3% or less - [x] There are no major code smells or security issues - Does this introduce breaking changes? - [x] There are no breaking changes in this PR.
|
|
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.



Purpose
localstack 3.3.0 has been released March 2024 and is outdated. We need to be compatible with the latest AWS S3.
Localstack 3.3.0 is very big resulting in long download time and high memory consumption.
The pom.xml property
<localstack.version>1.20.5</localstack.version>is misleading.Approach
Switch from 3.3.0 to s3-community-archive that is current and much smaller.
localstack 3.3.0 image size: 415 MB - https://hub.docker.com/r/localstack/localstack/tags?name=3.3.0
localstack s3-community-archive image size: 106 MB - https://hub.docker.com/r/localstack/localstack/tags?name=s3-community-archive
In pom.xml use the existing ${testcontainers.version} for org.testcontainers:localstack.
Pre-Merge Checklist:
Before merging this PR, please go through the following list and take appropriate actions.