flicker, pack creation, export tooltip, audit guidance Sprint A: Harbor fixture now returns realistic search results (7 repos) and artifact digests (3 versions with tags). Release creation wizard Step 2 now shows actual images to select. Sprint B: Scan polling caps at 60 polls (3 min). Shows timeout banner with guidance link to Scheduled Jobs and "Keep Waiting" button. Sprint C: /console/profile route now renders InsufficientPermissions component instead of 404. Shows user/tenant, guidance, and nav links. Catches all 24 guard redirect dead-ends. Sprint D: Event stream chip no longer flickers DEGRADED during context reloads. Loading state treated as connected (transient, not error). Sprint E: Policy Packs empty state now has inline Create Pack form. Calls existing PolicyApiService.createPack() backend endpoint. Sprint F: Diagnostics Export button shows disabled tooltip "Run a diagnostic check first" when no results available. Sprint G: Audit Log shows guidance text when all module counts are 0. Lists automatically captured event types. Confirms audit is active. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
DevOps
Deployment infrastructure for StellaOps.
Stack
| Component | Technology |
|---|---|
| Database | PostgreSQL 18.1 |
| Cache/Queue | Valkey 9.0.1 |
| Storage | RustFS |
| Transparency | Rekor v2 |
Structure
devops/
├── compose/ # Docker Compose files
├── helm/ # Kubernetes Helm chart
├── docker/ # Dockerfiles
├── runtime-assets/ # Runtime data assets (ML models, JDK, Ghidra, certs)
├── database/ # PostgreSQL migrations
├── scripts/ # Operational scripts
├── offline/ # Air-gap support
├── telemetry/ # Alerts & dashboards
├── logging/ # Log config templates
├── release/ # Release tools
├── releases/ # Release manifests
├── secrets/ # Secret templates
└── tools/ # Validation scripts
Runtime Data Assets
Services require certain files at runtime that are not produced by dotnet publish
or npm run build: ML model weights, JDK/Ghidra for binary analysis, certificates,
and more. Before building Docker images or creating offline bundles, run:
./devops/runtime-assets/acquire.sh --all # download and verify
./devops/runtime-assets/acquire.sh --verify # check existing assets
./devops/runtime-assets/acquire.sh --package # create air-gap tarball
See devops/runtime-assets/README.md for the full inventory and provisioning guide.
Quick Start
# Local stack
docker compose -f devops/compose/docker-compose.stella-ops.yml up -d
# With telemetry
docker compose -f devops/compose/docker-compose.stella-ops.yml \
-f devops/compose/docker-compose.telemetry.yml up -d
# Kubernetes
helm install stellaops devops/helm/stellaops \
-f devops/helm/stellaops/values-prod.yaml \
-n stellaops --create-namespace
Compose Files
| File | Purpose |
|---|---|
stella-ops.yml |
Main stack |
telemetry.yml |
Observability |
testing.yml |
CI infrastructure |
compliance-china.yml |
SM2/SM3/SM4 |
compliance-russia.yml |
GOST |
compliance-eu.yml |
eIDAS |