Skip to content

Latest commit

 

History

History
36 lines (30 loc) · 1.14 KB

File metadata and controls

36 lines (30 loc) · 1.14 KB

Architecture

See the agent_docs/ directory for detailed architecture documentation:

Contextification Addendum

flowchart LR
    client[Client]
    flask[Flask app]
    api[REST API]
    v2[OCI registry API]
    model[Data model]
    db[(Database)]
    storage[Object storage]
    workers[Workers]

    client --> flask
    flask --> api
    flask --> v2
    api --> model
    v2 --> model
    model --> db
    v2 --> storage
    workers --> model
    workers --> storage
Loading

Quay state is split between database metadata, Redis coordination/cache data, and object storage blobs. Use data/model/ and data/registry_model/ rather than direct endpoint-to-database shortcuts.