Skip to content

Commit

Permalink
Remove nuster
Browse files Browse the repository at this point in the history
seems to be unmaintained
  • Loading branch information
mnot committed Jul 9, 2024
1 parent 4bc979a commit be236c5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 23 deletions.
12 changes: 0 additions & 12 deletions docker/nuster/nuster.cfg

This file was deleted.

12 changes: 1 addition & 11 deletions test-docker.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ set -euo pipefail

PIDFILE=/tmp/http-cache-test-server.pid

ALL_PROXIES=(squid nginx apache trafficserver varnish caddy nuster)
ALL_PROXIES=(squid nginx apache trafficserver varnish caddy)
DOCKER_PORTS=""
for PORT in {8001..8006}; do
DOCKER_PORTS+="-p 127.0.0.1:${PORT}:${PORT} "
Expand All @@ -30,11 +30,6 @@ function run {
docker run --name=tmp_proxies ${DOCKER_PORTS} -dt mnot/proxy-cache-tests host.docker.internal \
> /dev/null

# run nuster container
docker run --name=tmp_nuster -p 9001:9001 \
-v "${PWD}/docker/nuster/nuster.cfg:/etc/nuster/nuster.cfg:ro" -dt nuster/nuster:latest \
> /dev/null

trap cleanup EXIT

# give docker enough time to start
Expand All @@ -50,8 +45,6 @@ function cleanup {
# stop docker containers
docker kill tmp_proxies > /dev/null
docker rm tmp_proxies > /dev/null
docker kill tmp_nuster > /dev/null
docker rm tmp_nuster > /dev/null

# stop test server
kill "$(cat ${PIDFILE})" > /dev/null 2>&1
Expand Down Expand Up @@ -82,9 +75,6 @@ function test_proxy {
caddy)
PROXY_PORT=8006
;;
nuster)
PROXY_PORT=9001
;;
*)
echo "Proxy ${PKG} not recognised."
exit 1
Expand Down

0 comments on commit be236c5

Please sign in to comment.