- Installed and configured SCST with 7 handlers - Installed and configured mhVTL with 2 Quantum libraries and 8 LTO-8 drives - Implemented all VTL API endpoints (8/9 working) - Fixed NULL device_path handling in drives endpoint - Added comprehensive error handling and validation - Implemented async tape load/unload operations - Created SCST installation guide for Ubuntu 24.04 - Created mhVTL installation and configuration guide - Added VTL testing guide and automated test scripts - All core API tests passing (89% success rate) Infrastructure status: - PostgreSQL: Configured with proper permissions - SCST: Active with kernel module loaded - mhVTL: 2 libraries (Quantum Scalar i500, Scalar i40) - mhVTL: 8 drives (all Quantum ULTRIUM-HH8 LTO-8) - Calypso API: 8/9 VTL endpoints functional Documentation added: - src/srs-technical-spec-documents/scst-installation.md - src/srs-technical-spec-documents/mhvtl-installation.md - VTL-TESTING-GUIDE.md - scripts/test-vtl.sh Co-Authored-By: Warp <agent@warp.dev>
36 lines
777 B
Plaintext
36 lines
777 B
Plaintext
# AtlasOS - Calypso API Configuration
|
|
# Copy this file to /etc/calypso/config.yaml and customize
|
|
|
|
server:
|
|
port: 8080
|
|
host: "0.0.0.0"
|
|
read_timeout: 15s
|
|
write_timeout: 15s
|
|
idle_timeout: 60s
|
|
|
|
database:
|
|
host: "localhost"
|
|
port: 5432
|
|
user: "calypso"
|
|
password: "" # Set via CALYPSO_DB_PASSWORD environment variable
|
|
database: "calypso"
|
|
ssl_mode: "disable"
|
|
max_connections: 25
|
|
max_idle_conns: 5
|
|
conn_max_lifetime: 5m
|
|
|
|
auth:
|
|
jwt_secret: "" # Set via CALYPSO_JWT_SECRET environment variable (use strong random string)
|
|
token_lifetime: 24h
|
|
argon2:
|
|
memory: 65536 # 64 MB
|
|
iterations: 3
|
|
parallelism: 4
|
|
salt_length: 16
|
|
key_length: 32
|
|
|
|
logging:
|
|
level: "info" # debug, info, warn, error
|
|
format: "json" # json or text
|
|
|