Troubleshooting
Quick answers for frequent issues.
v8x Authentication Fails
v8x login # complete device flow in browser
If the terminal shows a "loop": verify network access to OIDC URL and that system clock skew < 60s.
Expired Token
v8x whoami # triggers refresh if possible
v8x login # re-authenticate if still failing
Profile Not Found
v8x profile list
v8x profile create dev --vantage-url https://app.vantagecompute.ai
v8x profile use dev
JSON Output / Parsing Errors
Ensure you used --json before piping to jq:
v8x cluster list --json | jq '.clusters | length'
Network / API Errors
- Add
-vfor debug logs - Confirm configured endpoints
Token Cache Corruption
Remove token file (path may differ by install) then re-login:
rm ~/.config/v8x/tokens/<profile>.json 2>/dev/null || true
v8x login
Rate Limits / Throttling
Retry after brief backoff; excessive rapid polling may be limited.
Still Stuck?
Open an issue including: command run, abbreviated error, Python version, profile name (not tokens).