Skip to content

Commit eeea50b

Browse files
authored
Fix healthcheck of aws-replicator proxy container (#91)
* Fix resolving of `localhost.localstack.cloud` on the aws-replicator proxy * Add comment to explain why the additional host is needed * Add changelog
1 parent 383b298 commit eeea50b

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

aws-replicator/README.md

+1
Original file line numberDiff line numberDiff line change
@@ -126,6 +126,7 @@ If you wish to access the deprecated instructions, they can be found [here](http
126126

127127
## Change Log
128128

129+
* `0.1.24`: Fix healthcheck probe for proxy container
129130
* `0.1.23`: Fix unpinned React.js dependencies preventing webui from loading
130131
* `0.1.22`: Fix auth-related imports that prevent the AWS proxy from starting
131132
* `0.1.20`: Fix logic for proxying S3 requests with `*.s3.amazonaws.com` host header

aws-replicator/aws_replicator/client/auth_proxy.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -334,13 +334,17 @@ def start_aws_auth_proxy_in_container(
334334
# create container
335335
container_name = f"{CONTAINER_NAME_PREFIX}{short_uid()}"
336336
image_name = DOCKER_IMAGE_NAME_PRO
337+
# add host mapping for localstack.cloud to localhost to prevent the health check from failing
338+
additional_flags = (
339+
repl_config.PROXY_DOCKER_FLAGS + " --add-host=localhost.localstack.cloud:host-gateway"
340+
)
337341
DOCKER_CLIENT.create_container(
338342
image_name,
339343
name=container_name,
340344
entrypoint="",
341345
command=["bash", "-c", f"touch {CONTAINER_LOG_FILE}; tail -f {CONTAINER_LOG_FILE}"],
342346
ports=ports,
343-
additional_flags=repl_config.PROXY_DOCKER_FLAGS,
347+
additional_flags=additional_flags,
344348
)
345349

346350
# start container in detached mode

aws-replicator/setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = localstack-extension-aws-replicator
3-
version = 0.1.23
3+
version = 0.1.24
44
summary = LocalStack AWS Proxy Extension
55
description = Proxy AWS resources into your LocalStack instance
66
long_description = file: README.md

0 commit comments

Comments
 (0)