[AZ-180] Update Jetson deployment documentation and remove obsolete task file

- Added Jetson-specific deployment instructions to `deploy_scripts.md`, detailing prerequisites and service management.
- Updated `deploy_status_report.md` to reflect the completion of the AZ-180 cycle and the readiness of Jetson support.
- Removed outdated task documentation for Jetson Orin Nano support from the todo list.

Made-with: Cursor
This commit is contained in:
Oleksandr Bezdieniezhnykh
2026-04-02 16:58:57 +03:00
parent 3984507221
commit 2c35e59a77
9 changed files with 377 additions and 7 deletions
+21
View File
@@ -50,6 +50,27 @@ Or using the e2e compose for testing:
cd e2e && COMPOSE_PROFILES=cpu docker compose -f docker-compose.test.yml up --build
```
### Jetson Orin Nano Deployment (AZ-180)
Jetson deployment uses `docker-compose.jetson.yml` directly — the standard CPU/GPU scripts are not used on Jetson.
**Prerequisites on target Jetson device**:
- JetPack 6.x installed
- NVIDIA Container Runtime configured (`runtime: nvidia` support in Docker)
- `docker compose` v2+
**Start service**:
```bash
docker compose -f docker-compose.jetson.yml up -d
```
**Stop service**:
```bash
docker compose -f docker-compose.jetson.yml down
```
**INT8 calibration cache**: Upload `azaion.int8_calib.cache` to the Loader service before first start to enable INT8 precision. If absent, the service falls back to FP16 automatically.
## Deployment Flow
```