Skip to content

Commit 88d7864

Browse files
Pin localstack to a community image (#20967) (#20973)
Localstack has changed to require authenticated access. See [this blog post][1] for details. In the short term this commit will pin our usage to the last community release that supported unauthenticated access. [1]: https://blog.localstack.cloud/localstack-single-image-next-steps/ (cherry picked from commit 0537405) Signed-off-by: Andrew Ross <andrross@amazon.com> Signed-off-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com> Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
1 parent b2f7ca9 commit 88d7864

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/ingestion-kinesis/src/internalClusterTest/java/org/opensearch/plugin/kinesis/KinesisIngestionBaseIT.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ protected void cleanup() {
6969
Supplier<String> passwordSupplier = () -> RandomStrings.randomAsciiLettersOfLengthBetween(getRandom(), 16, 24);
7070

7171
private void setupKinesis() throws InterruptedException {
72-
localstack = new LocalStackContainer(DockerImageName.parse("localstack/localstack:latest")).withEnv(
72+
localstack = new LocalStackContainer(DockerImageName.parse("localstack/localstack:4.14.0")).withEnv(
7373
"AWS_ACCESS_KEY_ID",
7474
passwordSupplier.get()
7575
).withEnv("AWS_SECRET_ACCESS_KEY", passwordSupplier.get()).withServices(LocalStackContainer.Service.KINESIS);

0 commit comments

Comments
 (0)