All checks were successful
Smoke Test / smoke (pull_request) Successful in 7s
- Adds ansible/ deploy_turboquant.yml playbook with per-node config - Adds turboquant-deploy role: OS-specific (darwin/debian) tasks - Adds health_check.sh and integration test (chat completion) - Adds inventory.ini.example with Mac/Allegro/Ezra groups - Deploys llama.cpp with TurboQuant (Metal on macOS) - Systemd service (Linux) with TURBO_LAYER_ADAPTIVE env
23 lines
629 B
Plaintext
23 lines
629 B
Plaintext
# Ansible inventory for TurboQuant fleet deployment
|
|
# Edit this file and save as ansible/inventory.ini before running
|
|
|
|
[mac]
|
|
# Local MacBook — runs llama-server with Metal + TurboQuant
|
|
timmy-mac ansible_host=localhost ansible_connection=local
|
|
|
|
[allegro]
|
|
# Allegro VPS — Debian, runs llama-server or vLLM with GGUF q4_0
|
|
allegro-primary ansible_host=167.99.126.228 ansible_user=root
|
|
|
|
[ezra]
|
|
# Ezra VPS — Ubuntu, runs llama-server or vLLM
|
|
ezra-primary ansible_host=143.198.27.163 ansible_user=root ansible_connection=local
|
|
|
|
[turbonodes:children]
|
|
mac
|
|
allegro
|
|
ezra
|
|
|
|
[turbonodes:vars]
|
|
ansible_python_interpreter=/usr/bin/python3
|