From 912c72c2bb64674def4386229ca1317a25b5aed5 Mon Sep 17 00:00:00 2001 From: Kenneth Bingham Date: Thu, 12 Dec 2024 11:22:52 -0500 Subject: [PATCH] revert experiments --- docker/docker.test.bash | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docker/docker.test.bash b/docker/docker.test.bash index 57c32c5e..0d34344a 100755 --- a/docker/docker.test.bash +++ b/docker/docker.test.bash @@ -79,7 +79,6 @@ for BIN in "${BINS[@]}"; do done : "${I_AM_ROBOT:=0}" -: "${HTTPBIN_PORT:=8080}" : "${ZITI_CTRL_ADVERTISED_PORT:=12802}" : "${ZITI_ROUTER_PORT:=30224}" # : "${ZIGGY_UID:=$(id -u)}" @@ -128,7 +127,7 @@ cleanup # freshen ziti-controller, httpbin, etc. images docker compose pull -for PORT in "${ZITI_CTRL_ADVERTISED_PORT}" "${ZITI_ROUTER_PORT}" "${HTTPBIN_PORT}" +for PORT in "${ZITI_CTRL_ADVERTISED_PORT}" "${ZITI_ROUTER_PORT}" do portcheck "${PORT}" done @@ -171,7 +170,7 @@ ziti edge create config "httpbin-intercept-config" intercept.v1 \ '{"protocols":["tcp"],"addresses":["httpbin.ziti.internal"], "portRanges":[{"low":80, "high":80}]}' ziti edge create config "httpbin-host-config" host.v1 \ - '{"protocol":"tcp", "address":"localhost","port":'${HTTPBIN_PORT}'}' + '{"protocol":"tcp", "address":"localhost","port":8080}' ziti edge create service "httpbin-service" \ --configs httpbin-intercept-config,httpbin-host-config \