From 86108f5b75f88d4fb7428bd9be73b46965477828 Mon Sep 17 00:00:00 2001 From: Andriy Oblivantsev Date: Thu, 19 Feb 2026 20:40:22 +0000 Subject: [PATCH] Minor docs change --- docs/architecture-design-company-inc.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/architecture-design-company-inc.md b/docs/architecture-design-company-inc.md index b54df88..e742976 100644 --- a/docs/architecture-design-company-inc.md +++ b/docs/architecture-design-company-inc.md @@ -106,6 +106,7 @@ flowchart TD Zero-downtime releases without duplicating infrastructure. Both versions run inside the **same GKE cluster**; the load balancer switches traffic atomically. + ```mermaid flowchart LR LB[Load Balancer] @@ -113,7 +114,7 @@ flowchart LR LB -.->|0% traffic| Blue[Blue — v1.3.0
new release] Blue -.->|smoke tests pass| LB ``` - +--- | Phase | Action | |-------|--------| | **Deploy** | New version deployed to the idle slot (blue) | @@ -207,7 +208,7 @@ Not everything in a "best practices" architecture is worth implementing on day o ## 7. High-Level Architecture Diagram ```mermaid -flowchart TB +flowchart TD Users((Users)) Users --> CDN[Cloud CDN
Static Assets] @@ -230,7 +231,7 @@ flowchart TB API --> Mongo API --> Secrets - GKE --> Registry + GKE ----> Registry ``` ---