Some checks failed
AOC Guard CI / aoc-guard (push) Has been cancelled
AOC Guard CI / aoc-verify (push) Has been cancelled
Concelier Attestation Tests / attestation-tests (push) Has been cancelled
Docs CI / lint-and-preview (push) Has been cancelled
Policy Lint & Smoke / policy-lint (push) Has been cancelled
Scanner Analyzers / Discover Analyzers (push) Has been cancelled
Scanner Analyzers / Build Analyzers (push) Has been cancelled
Scanner Analyzers / Test Language Analyzers (push) Has been cancelled
Scanner Analyzers / Validate Test Fixtures (push) Has been cancelled
Scanner Analyzers / Verify Deterministic Output (push) Has been cancelled
wine-csp-build / Build Wine CSP Image (push) Has been cancelled
- Implemented PqSoftCryptoProvider for software-only post-quantum algorithms (Dilithium3, Falcon512) using BouncyCastle. - Added PqSoftProviderOptions and PqSoftKeyOptions for configuration. - Created unit tests for Dilithium3 and Falcon512 signing and verification. - Introduced EcdsaPolicyCryptoProvider for compliance profiles (FIPS/eIDAS) with explicit allow-lists. - Added KcmvpHashOnlyProvider for KCMVP baseline compliance. - Updated project files and dependencies for new libraries and testing frameworks.
86 lines
3.0 KiB
YAML
86 lines
3.0 KiB
YAML
x-release-labels: &release-labels
|
|
com.stellaops.release.version: "2025.09.2-mock"
|
|
com.stellaops.release.channel: "dev-mock"
|
|
com.stellaops.profile: "mock-overlay"
|
|
|
|
services:
|
|
orchestrator:
|
|
image: registry.stella-ops.org/stellaops/orchestrator@sha256:97f12856ce870bafd3328bda86833bcccbf56d255941d804966b5557f6610119
|
|
command: ["dotnet", "StellaOps.Orchestrator.WebService.dll"]
|
|
depends_on:
|
|
- mongo
|
|
- nats
|
|
labels: *release-labels
|
|
networks: [stellaops]
|
|
|
|
policy-registry:
|
|
image: registry.stella-ops.org/stellaops/policy-registry@sha256:c6cad8055e9827ebcbebb6ad4d6866dce4b83a0a49b0a8a6500b736a5cb26fa7
|
|
command: ["dotnet", "StellaOps.Policy.Engine.dll"]
|
|
depends_on:
|
|
- mongo
|
|
labels: *release-labels
|
|
networks: [stellaops]
|
|
|
|
vex-lens:
|
|
image: registry.stella-ops.org/stellaops/vex-lens@sha256:b44e63ecfeebc345a70c073c1ce5ace709c58be0ffaad0e2862758aeee3092fb
|
|
command: ["dotnet", "StellaOps.VexLens.dll"]
|
|
depends_on:
|
|
- mongo
|
|
labels: *release-labels
|
|
networks: [stellaops]
|
|
|
|
issuer-directory:
|
|
image: registry.stella-ops.org/stellaops/issuer-directory@sha256:67e8ef02c97d3156741e857756994888f30c373ace8e84886762edba9dc51914
|
|
command: ["dotnet", "StellaOps.IssuerDirectory.Web.dll"]
|
|
depends_on:
|
|
- mongo
|
|
- authority
|
|
labels: *release-labels
|
|
networks: [stellaops]
|
|
|
|
findings-ledger:
|
|
image: registry.stella-ops.org/stellaops/findings-ledger@sha256:71d4c361ba8b2f8b69d652597bc3f2efc8a64f93fab854ce25272a88506df49c
|
|
command: ["dotnet", "StellaOps.Findings.Ledger.WebService.dll"]
|
|
depends_on:
|
|
- postgres
|
|
- authority
|
|
labels: *release-labels
|
|
networks: [stellaops]
|
|
|
|
vuln-explorer-api:
|
|
image: registry.stella-ops.org/stellaops/vuln-explorer-api@sha256:7fc7e43a05cbeb0106ce7d4d634612e83de6fdc119aaab754a71c1d60b82841d
|
|
command: ["dotnet", "StellaOps.VulnExplorer.Api.dll"]
|
|
depends_on:
|
|
- findings-ledger
|
|
- authority
|
|
labels: *release-labels
|
|
networks: [stellaops]
|
|
|
|
packs-registry:
|
|
image: registry.stella-ops.org/stellaops/packs-registry@sha256:1f5e9416c4dc608594ad6fad87c24d72134427f899c192b494e22b268499c791
|
|
command: ["dotnet", "StellaOps.PacksRegistry.dll"]
|
|
depends_on:
|
|
- mongo
|
|
labels: *release-labels
|
|
networks: [stellaops]
|
|
|
|
task-runner:
|
|
image: registry.stella-ops.org/stellaops/task-runner@sha256:eb5ad992b49a41554f41516be1a6afcfa6522faf2111c08ff2b3664ad2fc954b
|
|
command: ["dotnet", "StellaOps.TaskRunner.WebService.dll"]
|
|
depends_on:
|
|
- packs-registry
|
|
- postgres
|
|
labels: *release-labels
|
|
networks: [stellaops]
|
|
|
|
# Wine CSP Service - GOST cryptographic operations via Wine-hosted CryptoPro CSP
|
|
# WARNING: For TEST VECTOR GENERATION ONLY - not for production signing
|
|
wine-csp:
|
|
image: registry.stella-ops.org/stellaops/wine-csp:${WINE_CSP_VERSION:-2025.09.2-mock}
|
|
environment:
|
|
WINE_CSP_PORT: "5099"
|
|
WINE_CSP_MODE: "limited"
|
|
WINE_CSP_LOG_LEVEL: "Debug"
|
|
labels: *release-labels
|
|
networks: [stellaops]
|