From c019a74c065be7ffb50d438254679e5f615cae0c Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Etxaniz=20Errazkin=2C=20I=C3=B1aki?=
 <inaki.etxaniz@tecnalia.com>
Date: Thu, 12 Sep 2024 11:54:59 +0200
Subject: [PATCH] Update testDiagram.puml

---
 testDiagram.puml | 37 ++++++++++++++++++++++++++++++++-----
 1 file changed, 32 insertions(+), 5 deletions(-)

diff --git a/testDiagram.puml b/testDiagram.puml
index cb4deb2..0c4ee30 100644
--- a/testDiagram.puml
+++ b/testDiagram.puml
@@ -1,9 +1,36 @@
+```plantuml
 @startuml
 
-Alice -> Bob: Authentication Request
-Bob --> Alice: Authentication Response
+title Initiate Deployment
 
-Alice -> Bob: Another authentication Request
-Alice <-- Bob: Another authentication Response
+participant "Runtime Controller (PRC)" as RTPRC
 
-@enduml
\ No newline at end of file
+box "IaC Execution Manager" #LightBlue
+participant "Rest API" as RTIEM_api #99FF99
+participant Core as RTIEM_core #99FF99
+participant Persistence as RTIEM_db #99FF99
+participant "Executor" as executor #99FF99
+
+end box
+
+collections "Resource Provider" as infraresource
+
+RTPRC -> RTIEM_api: Deployment Request
+RTPRC <-- RTIEM_api: Deployment Response
+
+RTIEM_api -> RTIEM_core: Deployment Request
+
+RTIEM_core -> RTIEM_db: Save Deployment Started
+
+RTIEM_core -> executor: Deployment Request
+
+executor -> infraresource: Deploy Commands
+executor -> infraresource: ...
+executor -> infraresource: Deploy Commands
+
+executor -> RTIEM_core: Deployment Response
+
+RTIEM_core -> RTIEM_db: Save Deployment Status
+
+@enduml
+```
\ No newline at end of file
-- 
GitLab