Przeglądaj źródła

Remove apparently unused files

GitOrigin-RevId: 60a4427c9c8a58ae700244f06d80c574002e923c
John Lees-Miller 9 miesięcy temu
rodzic
commit
9408d253da

+ 0 - 5
services/docstore/test/acceptance/deps/Dockerfile.fake-gcs

@@ -1,5 +0,0 @@
-FROM fsouza/fake-gcs-server:latest
-RUN apk add --update --no-cache curl
-COPY healthcheck.sh /healthcheck.sh
-HEALTHCHECK --interval=1s --timeout=1s --retries=30 CMD /healthcheck.sh http://localhost:9090
-CMD ["--port=9090", "--scheme=http"]

+ 0 - 9
services/docstore/test/acceptance/deps/healthcheck.sh

@@ -1,9 +0,0 @@
-#!/bin/sh
-
-# health check to allow 404 status code as valid
-STATUSCODE=$(curl --silent --output /dev/null --write-out "%{http_code}" "$1")
-# will be 000 on non-http error (e.g. connection failure)
-if test "$STATUSCODE" -ge 500 || test "$STATUSCODE" -lt 200; then
-  exit 1
-fi
-exit 0

+ 0 - 5
services/filestore/test/acceptance/deps/Dockerfile.fake-gcs

@@ -1,5 +0,0 @@
-FROM fsouza/fake-gcs-server:1.20
-RUN apk add --update --no-cache curl
-COPY healthcheck.sh /healthcheck.sh
-HEALTHCHECK --interval=1s --timeout=1s --retries=30 CMD /healthcheck.sh http://127.0.0.1:9090
-CMD ["--port=9090", "--scheme=http"]

+ 0 - 4
services/filestore/test/acceptance/deps/Dockerfile.s3mock

@@ -1,4 +0,0 @@
-FROM adobe/s3mock:2.4.14
-RUN apk add --update --no-cache curl
-COPY healthcheck.sh /healthcheck.sh
-HEALTHCHECK --interval=1s --timeout=1s --retries=30 CMD /healthcheck.sh http://127.0.0.1:9090

+ 0 - 9
services/filestore/test/acceptance/deps/healthcheck.sh

@@ -1,9 +0,0 @@
-#!/bin/sh
-
-# health check to allow 404 status code as valid
-STATUSCODE=$(curl --silent --output /dev/null --write-out "%{http_code}" "$1")
-# will be 000 on non-http error (e.g. connection failure)
-if test "$STATUSCODE" -ge 500 || test "$STATUSCODE" -lt 200; then
-  exit 1
-fi
-exit 0