blob: d90117fc7cfa5f10adc0d66b0619065e0f29e619 [file] [log] [blame]
# Sets up the port forwarding to Prometheus on skia-corp.
set -e
source ./corp-config.sh
printf "\nPress enter when finished.\n\n"
kubectl port-forward prometheus-0 9090 9090 &
pid=$!
xdg-open http://localhost:9090
read -p ""
kill $pid