iac/docs/apps/issues.md

999 B

issues

Проблемы. Namespace: issues.

flowchart LR
    PG[(PostgreSQL)]:::data
    Kafka[[Kafka]]:::msg
    Inspect[inspections]:::peer
    Remarks[remarks]:::peer

    subgraph NS["ns: issues"]
        Frontend[deployment: frontend]:::comp
        Backend[deployment: backend<br/>API]:::comp
        Celery[deployment: celery<br/>worker]:::comp
        Cfg{{configmap: production}}:::cfg
        Frontend --> Backend
        Backend -. tasks .-> Celery
        Cfg -.-> Backend
    end

    Inspect -->|REST| Backend
    Kafka -->|consume inspect.events| Backend
    Backend -->|REST| Remarks
    Backend --> PG

    classDef comp fill:#ec4899,stroke:#9d174d,stroke-width:2px,color:#fff
    classDef peer fill:#fce7f3,stroke:#9d174d,color:#000
    classDef data fill:#10b981,stroke:#065f46,color:#fff
    classDef msg fill:#ef4444,stroke:#991b1b,color:#fff
    classDef cfg fill:#fef3c7,stroke:#92400e,color:#000
    style NS fill:#fdf2f8,stroke:#ec4899,stroke-width:2px