From b6885c3b4a8e234d3bd71e57404dc2048fa3bf06 Mon Sep 17 00:00:00 2001 From: Baptiste Bonnot Date: Fri, 3 Oct 2025 12:47:44 +0200 Subject: [PATCH] Update object storage --- Guide-ObjectStorage.md | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/Guide-ObjectStorage.md b/Guide-ObjectStorage.md index 274bd9d..cb3c295 100644 --- a/Guide-ObjectStorage.md +++ b/Guide-ObjectStorage.md @@ -1,2 +1,19 @@ -# WIP +# Overview + +## Diagram + +```mermaid +flowchart TD + A[User / Application] --> B[ObjectBucketClaim OBC] + B --> C[ObjectBucket provisioned by ODF] + C --> D[Secret with endpoint and credentials] + D --> E[Application Pods using bucket] + + %% Styling for clarity + style A fill:#f9f,stroke:#333,stroke-width:1px + style B fill:#bbf,stroke:#333,stroke-width:1px + style C fill:#bfb,stroke:#333,stroke-width:1px + style D fill:#ffb,stroke:#333,stroke-width:1px + style E fill:#fcf,stroke:#333,stroke-width:1px +```