From 0fa754f490d12b7b8a0313d1cd4e9fdac2797c4d Mon Sep 17 00:00:00 2001 From: Daniel Nephin Date: Wed, 6 Jan 2021 17:31:33 -0500 Subject: [PATCH] Pin alpine/socat image to a version. To fix failing integration tests. The latest version (`1.7.4.0-r0`) appears to not be catting all the bytes, so the expected metrics are missing in the output. --- test/integration/connect/envoy/run-tests.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/integration/connect/envoy/run-tests.sh b/test/integration/connect/envoy/run-tests.sh index 52d83e0c5..fed69474e 100755 --- a/test/integration/connect/envoy/run-tests.sh +++ b/test/integration/connect/envoy/run-tests.sh @@ -531,7 +531,7 @@ function run_container_fake-statsd { docker run -d --name $(container_name) \ $WORKDIR_SNIPPET \ $(network_snippet primary) \ - "${HASHICORP_DOCKER_PROXY}/alpine/socat" \ + "${HASHICORP_DOCKER_PROXY}/alpine/socat:1.7.3.4-r1" \ -u UDP-RECVFROM:8125,fork,reuseaddr \ SYSTEM:'xargs -0 echo >> /workdir/primary/statsd/statsd.log' }