Initial commit: stateful OpenStack API laboratory simulator.

Ship Keystone auth, multi-service handlers (Yoga→Dalmatian), Compose/Helm
packaging, API contract packs, and pytest/Pulumi coverage labs.
This commit is contained in:
2026-07-18 04:26:48 +03:00
commit 6033967e6a
509 changed files with 464404 additions and 0 deletions
+39
View File
@@ -0,0 +1,39 @@
**Language / Язык:** [English](observability.md) | [Русский](ru/observability.md)
# Observability
## Health endpoints
| Path | Meaning |
|---|---|
| `/health/live` | Process is running |
| `/health/ready` | DB reachable + migrations applied |
Both are exposed on the simulator and via the gateway (any published port).
## Request IDs
Header `X-Request-ID` (configurable via `REQUEST_ID_HEADER`) is accepted and
echoed where middleware applies.
## Logs
Compose:
```bash
make logs
docker compose logs -f simulator api-gateway
```
Helm:
```bash
kubectl logs -l app.kubernetes.io/component=simulator -f
kubectl logs -l app.kubernetes.io/component=gateway -f
```
## Compatibility / coverage evidence
- Pack coverage: [api_coverage.md](api_coverage.md)
- Live lifecycle: `examples/python/openstack_surface_probe.py`
- pytest: `tests/openstack/` (includes real-DB conformance)