Spaces:
Running
Running
File size: 268 Bytes
877add7 | 1 2 3 4 5 6 7 8 9 | #!/usr/bin/env bash
set -euo pipefail
curl -fsS http://127.0.0.1:8100/health >/dev/null
curl -fsS http://127.0.0.1:8100/metadata >/dev/null
curl -fsS http://127.0.0.1:8200/health >/dev/null
curl -fsS http://127.0.0.1:8200/env/legal_actions >/dev/null
echo "smoke_ok"
|