From ec27a519a1578c290a02b436fac9ca8821154cf6 Mon Sep 17 00:00:00 2001 From: erik Date: Thu, 5 Oct 2023 15:09:18 +0200 Subject: [PATCH] Format --- doc/data-flow.md | 34 ++++++++++++++++++++++------------ 1 file changed, 22 insertions(+), 12 deletions(-) diff --git a/doc/data-flow.md b/doc/data-flow.md index 60d8227..3aab793 100644 --- a/doc/data-flow.md +++ b/doc/data-flow.md @@ -13,27 +13,37 @@ flowchart TB nginx(nginx) serve((serve website)) user(website-user) + generate((Generation)) + app(application.yaml) + build((build website)) + pull((pull website repo)) + unpack((unpack website data)) + exec((execute scripts)) + if0{scripts exist} + subgraph dockerImage - build((build website)) - pull((pull website repo)) - unpack((unpack website data)) - exec((execute scripts)) - if0{scripts exist} pull -- zip file --> unpack unpack -- website data --> if0 if0 -- yes --> exec exec -- modified\n website data--> build if0 -- no\n unmodified website data --> build end + conf -- configuration data --> c4k auth -- authorization data --> c4k - c4k -- container specific config &\n build specific env vars--> depl & cron - c4k -- build specific secret env vars --> sec - sec -- secret env vars --> depl & cron - depl & cron -- environment vars\n from secret and c4k-website --> dockerImage + c4k -- auth & conf data --> generate + generate -- correctly placed auth & conf data --> app + + subgraph cluster + app -- container specific config &\n build specific env vars--> depl & cron + app -- build specific secret env vars --> sec + sec -- secret env vars --> depl & cron + depl & cron -- environment vars\n from secret and c4k-website --> dockerImage + dockerImage -- website files --> vol + vol -- website files --> nginx + nginx -- website files --> serve + end + repo -- build repo --> dockerImage - dockerImage -- website files --> vol - vol -- website files --> nginx - nginx -- website files --> serve serve -- rendered page --> user ```