doc(ipceicis-363-goldenpath-sia): added platform and environment architecture

This commit is contained in:
Stephan Lo 2024-09-10 15:27:44 +00:00
parent 3b94db7150
commit dc0284d6f1
6 changed files with 206 additions and 1 deletions

View file

@ -24,4 +24,27 @@ Die Erwartung ist, dass so ein Projekt als 'Golden Path' abbildbar ist und die E
## References
* https://platformengineering.org/blog/decoding-golden-paths-the-highway-for-your-developers
* https://platformengineering.org/blog/decoding-golden-paths-the-highway-for-your-developers
## Scenario (see IPCEICIS-363)
```mermaid
graph TB
Developer[fa:fa-user developer]
PlatformDeliveryAndControlPlaneIDE[IDE]
subgraph LocalBox["localBox"]
LocalBox.EDF[Platform]
LocalBox.Local[local]
end
subgraph CloudGroup["cloudGroup"]
CloudGroup.Test[test]
CloudGroup.Prod[prod]
end
Developer -. "use preferred IDE as local code editing, building, testing, syncing tool" .-> PlatformDeliveryAndControlPlaneIDE
Developer -. "manage (in Developer Portal)" .-> LocalBox.EDF
PlatformDeliveryAndControlPlaneIDE -. "provide "code"" .-> LocalBox.EDF
LocalBox.EDF -. "provision" .-> LocalBox.Local
LocalBox.EDF -. "provision" .-> CloudGroup.Prod
LocalBox.EDF -. "provision" .-> CloudGroup.Test
```