Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions scripts/forward/traefik.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#!/bin/sh
set -euf

echo 'Dashboard: http://localhost:9090/dashboard/'
echo 'API: http://localhost:9090/api/'
# We don't know the value of $PORT yet
echo 'Dashboard: http://localhost:$PORT/dashboard/'
echo 'API: http://localhost:$PORT/api/'

FORWARD_NS=traefik FORWARD_NAME=service/traefik-headless FORWARD_PORT=9000 ./scripts/forward/service.sh

5 changes: 3 additions & 2 deletions scripts/forward/traefik_tunnel.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
#!/bin/sh
set -euf

echo 'Dashboard: http://localhost:9090/dashboard/'
echo 'API: http://localhost:9090/api/'
# We don't know the value of $PORT yet
echo 'Dashboard: http://localhost:$PORT/dashboard/'
echo 'API: http://localhost:$PORT/api/'

FORWARD_NS=traefik-tunnel FORWARD_NAME=service/traefik-headless FORWARD_PORT=9000 ./scripts/forward/service.sh